Skip to content
Snippets Groups Projects
Commit 725de16b authored by Ewelina Maria Lobodzinska's avatar Ewelina Maria Lobodzinska
Browse files

GeneratorFilters : correct the units

parent a5f50dd2
No related branches found
No related tags found
9 merge requests!69091Fix correlated smearing bug in JER in JetUncertainties in 22.0,!58791DataQualityConfigurations: Modify L1Calo config for web display,!51674Fixing hotSpotInHIST for Run3 HIST,!50012RecExConfig: Adjust log message levels from GetRunNumber and GetLBNumber,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!46538Draft: Added missing xAOD::TrigConfKeys from DESDM_MCP,!46514TGC Digitization: Implementation of signal propagation time between the sensor edge and ASD,!46415GeneratorFilters : correct the units
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
// ------------------------------------------------------------- // -------------------------------------------------------------
...@@ -33,11 +33,11 @@ DiBjetFilter::DiBjetFilter(const std::string& name, ISvcLocator* pSvcLocator) ...@@ -33,11 +33,11 @@ DiBjetFilter::DiBjetFilter(const std::string& name, ISvcLocator* pSvcLocator)
{ {
//-------------------------------------------------------------------------- //--------------------------------------------------------------------------
// Local Member Data:- // Local Member Data:-
declareProperty("LeadJetPtMin",m_leadJet_ptMin=0/Gaudi::Units::GeV); declareProperty("LeadJetPtMin",m_leadJet_ptMin=0*Gaudi::Units::GeV);
declareProperty("LeadJetPtMax",m_leadJet_ptMax=50000/Gaudi::Units::GeV); declareProperty("LeadJetPtMax",m_leadJet_ptMax=50000*Gaudi::Units::GeV);
declareProperty("BottomPtMin",m_bottomPtMin=5.0/Gaudi::Units::GeV); declareProperty("BottomPtMin",m_bottomPtMin=5.0*Gaudi::Units::GeV);
declareProperty("BottomEtaMax",m_bottomEtaMax=3.0); declareProperty("BottomEtaMax",m_bottomEtaMax=3.0);
declareProperty("JetPtMin",m_jetPtMin=15.0/Gaudi::Units::GeV); declareProperty("JetPtMin",m_jetPtMin=15.0*Gaudi::Units::GeV);
declareProperty("JetEtaMax",m_jetEtaMax=2.7); declareProperty("JetEtaMax",m_jetEtaMax=2.7);
declareProperty("DeltaRFromTruth",m_deltaRFromTruth=0.3); declareProperty("DeltaRFromTruth",m_deltaRFromTruth=0.3);
declareProperty("TruthContainerName",m_TruthJetContainerName="AntiKt4TruthJets"); declareProperty("TruthContainerName",m_TruthJetContainerName="AntiKt4TruthJets");
......
/* /*
Copyright (C) 2002-2020 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
// This is a general-purpose multi-b-jet filter. It can cut on: // This is a general-purpose multi-b-jet filter. It can cut on:
// - Multiplicity of b-jets (both min and max can be specified) // - Multiplicity of b-jets (both min and max can be specified)
...@@ -32,9 +32,9 @@ MultiBjetFilter::MultiBjetFilter(const std::string& name, ISvcLocator* pSvcLocat ...@@ -32,9 +32,9 @@ MultiBjetFilter::MultiBjetFilter(const std::string& name, ISvcLocator* pSvcLocat
declareProperty("NBJetsMax", m_nBJetsMax = -1); // Negative number means no cut declareProperty("NBJetsMax", m_nBJetsMax = -1); // Negative number means no cut
declareProperty("LeadJetPtMin", m_leadJet_ptMin = 0); declareProperty("LeadJetPtMin", m_leadJet_ptMin = 0);
declareProperty("LeadJetPtMax", m_leadJet_ptMax = -1); // Negative number means no cut declareProperty("LeadJetPtMax", m_leadJet_ptMax = -1); // Negative number means no cut
declareProperty("BottomPtMin", m_bottomPtMin = 5.0/Gaudi::Units::GeV); declareProperty("BottomPtMin", m_bottomPtMin = 5.0*Gaudi::Units::GeV);
declareProperty("BottomEtaMax", m_bottomEtaMax = 3.0); declareProperty("BottomEtaMax", m_bottomEtaMax = 3.0);
declareProperty("JetPtMin", m_jetPtMin = 15.0/Gaudi::Units::GeV); declareProperty("JetPtMin", m_jetPtMin = 15.0*Gaudi::Units::GeV);
declareProperty("JetEtaMax", m_jetEtaMax = 2.7); declareProperty("JetEtaMax", m_jetEtaMax = 2.7);
declareProperty("DeltaRFromTruth", m_deltaRFromTruth = 0.3); declareProperty("DeltaRFromTruth", m_deltaRFromTruth = 0.3);
declareProperty("TruthContainerName", m_TruthJetContainerName = "AntiKt4TruthJets"); declareProperty("TruthContainerName", m_TruthJetContainerName = "AntiKt4TruthJets");
......
/* /*
Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration Copyright (C) 2002-2021 CERN for the benefit of the ATLAS collaboration
*/ */
#include "GaudiKernel/PhysicalConstants.h" #include "GaudiKernel/PhysicalConstants.h"
...@@ -75,8 +75,8 @@ StatusCode WZtoLeptonFilter::filterFinalize() { ...@@ -75,8 +75,8 @@ StatusCode WZtoLeptonFilter::filterFinalize() {
"0 for more leptons ( difficult to recon ) : " << m_reconeffi << "\n" << "0 for more leptons ( difficult to recon ) : " << m_reconeffi << "\n" <<
"Etacut_electron : " << m_Eta_e << "\n" << "Etacut_electron : " << m_Eta_e << "\n" <<
"Etacut_muon : " << m_Eta_mu << "\n" << "Etacut_muon : " << m_Eta_mu << "\n" <<
"Ptcut_electron (GeV) : " << m_Pt_e/Gaudi::Units::GeV << "\n" << "Ptcut_electron (GeV) : " << m_Pt_e*Gaudi::Units::GeV << "\n" <<
"Ptcut_muon : " << m_Pt_mu/Gaudi::Units::GeV); "Ptcut_muon : " << m_Pt_mu*Gaudi::Units::GeV);
if (m_AthenaCalls == 0) { if (m_AthenaCalls == 0) {
ATH_MSG_INFO(" ERROR, Your filter is not interfaced/called at all " << "################ WZtoLeptonFilter Finished ##############"); ATH_MSG_INFO(" ERROR, Your filter is not interfaced/called at all " << "################ WZtoLeptonFilter Finished ##############");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment