Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
LHCb
Phys
Commits
13ea93ba
Commit
13ea93ba
authored
Nov 12, 2021
by
Patrick Koppenburg
🍃
Browse files
Remove CommonParticles
parent
fda3e398
Pipeline
#3233292
passed with stages
in 28 seconds
Changes
158
Pipelines
2
Expand all
Hide whitespace changes
Inline
Side-by-side
CMakeLists.txt
View file @
13ea93ba
...
...
@@ -40,7 +40,6 @@ lhcb_add_subdirectories(
MicroDST/MicroDSTInterfaces
MicroDST/MicroDSTTools
Phys/BBDecTreeTool
Phys/CommonParticles
Phys/DaVinciFilters
Phys/DaVinciInterfaces
Phys/DaVinciKernel
...
...
Phys/CommonParticles/CMakeLists.txt
deleted
100644 → 0
View file @
fda3e398
###############################################################################
# (c) Copyright 2000-2021 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
#[=======================================================================[.rst:
Phys/CommonParticles
--------------------
#]=======================================================================]
gaudi_install
(
PYTHON
)
gaudi_add_tests
(
pytest
)
Phys/CommonParticles/doc/release.notes
deleted
100755 → 0
View file @
fda3e398
This diff is collapsed.
Click to expand it.
Phys/CommonParticles/python/CommonParticles/NoBremNoPIDsDownElectrons.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StdNoPIDsElectrons.py
# configuration file for 'Standard NoPIDs Pions'
# @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl
# @date 2009-01-14
# =============================================================================
"""
Configuration file for 'NoBrem NoPIDs Electrons with downstram tracks'
"""
from
__future__
import
print_function
__author__
=
"Ulrich Kerzel Ulrich.Kerzel@cern.ch"
# =============================================================================
__all__
=
(
'NoBremNoPIDsDownElectrons'
,
'locations'
)
# =============================================================================
from
Gaudi.Configuration
import
*
from
Configurables
import
NoPIDsParticleMaker
from
CommonParticles.Utils
import
*
## create the algorithm
algorithm
=
NoPIDsParticleMaker
(
'NoBremNoPIDsDownElectrons'
,
DecayDescriptor
=
'Electron'
,
Particle
=
'electron'
)
algorithm
.
AddBremPhotonTo
=
[]
# configure the track selector
selector
=
trackSelector
(
algorithm
,
trackTypes
=
[
"Downstream"
])
## configure Data-On-Demand service
locations
=
updateDoD
(
algorithm
)
## finally: define the symbol
NoBremNoPIDsDownElectrons
=
algorithm
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/NoBremNoPIDsElectrons.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StdNoPIDsElectrons.py
# configuration file for 'Standard NoPIDs Electrons'
# @author Patrick Koppenburg
# @date 2011-07-18
# =============================================================================
"""
Configuration file for 'No Brem NoPIDs Electrons wioth loose cuts'
"""
from
__future__
import
print_function
__author__
=
"Patrick Koppenburg "
# =============================================================================
__all__
=
(
'NoBremNoPIDsElectrons'
,
'locations'
)
# =============================================================================
from
Gaudi.Configuration
import
*
from
Configurables
import
NoPIDsParticleMaker
from
CommonParticles.Utils
import
*
## create the algorithm
algorithm
=
NoPIDsParticleMaker
(
'NoBremNoPIDsElectrons'
,
DecayDescriptor
=
'Electron'
,
Particle
=
'electron'
)
selector
=
trackSelector
(
algorithm
,
trackTypes
=
[
"Long"
])
algorithm
.
AddBremPhotonTo
=
[]
## configure Data-On-Demand service
locations
=
updateDoD
(
algorithm
)
## finally: define the symbol
NoBremNoPIDsElectrons
=
algorithm
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/NoBremNoPIDsTtrackElectrons.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StdNoPIDsElectrons.py
# configuration file for 'Standard NoPIDs Pions'
# @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl
# @date 2009-01-14
# =============================================================================
"""
Configuration file for 'NoBrem NoPIDs Electrons with Ttrack tracks'
"""
from
__future__
import
print_function
__author__
=
"Ulrich Kerzel Ulrich.Kerzel@cern.ch"
# =============================================================================
__all__
=
(
'NoBremNoPIDsTtrackElectrons'
,
'locations'
)
# =============================================================================
from
Gaudi.Configuration
import
*
from
Configurables
import
NoPIDsParticleMaker
from
CommonParticles.Utils
import
*
## create the algorithm
algorithm
=
NoPIDsParticleMaker
(
'NoBremNoPIDsTtrackElectrons'
,
DecayDescriptor
=
'Electron'
,
Particle
=
'electron'
)
algorithm
.
AddBremPhotonTo
=
[]
# configure the track selector
selector
=
trackSelector
(
algorithm
,
trackTypes
=
[
"Ttrack"
])
## configure Data-On-Demand service
locations
=
updateDoD
(
algorithm
)
## finally: define the symbol
NoBremNoPIDsTtrackElectrons
=
algorithm
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/NoBremNoPIDsUpElectrons.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StdNoPIDsElectrons.py
# configuration file for 'Standard NoPIDs Pions'
# @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl
# @date 2009-01-14
# =============================================================================
"""
Configuration file for 'NoBrem NoPIDs Electrons with Upstream tracks'
"""
from
__future__
import
print_function
__author__
=
"Ulrich Kerzel Ulrich.Kerzel@cern.ch"
# =============================================================================
__all__
=
(
'NoBremNoPIDsUpElectrons'
,
'locations'
)
# =============================================================================
from
Gaudi.Configuration
import
*
from
Configurables
import
NoPIDsParticleMaker
from
CommonParticles.Utils
import
*
## create the algorithm
algorithm
=
NoPIDsParticleMaker
(
'NoBremNoPIDsUpElectrons'
,
DecayDescriptor
=
'Electron'
,
Particle
=
'electron'
)
algorithm
.
AddBremPhotonTo
=
[]
# configure the track selector
selector
=
trackSelector
(
algorithm
,
trackTypes
=
[
"Upstream"
])
## configure Data-On-Demand service
locations
=
updateDoD
(
algorithm
)
## finally: define the symbol
NoBremNoPIDsUpElectrons
=
algorithm
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/NoBremNoPIDsVeloElectrons.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StdNoPIDsElectrons.py
# configuration file for 'Standard NoPIDs Pions'
# @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl
# @date 2009-01-14
# =============================================================================
"""
Configuration file for 'Standard NoPIDs Electrons with VELO tracks'
"""
from
__future__
import
print_function
__author__
=
"Ulrich Kerzel Ulrich.Kerzel@cern.ch"
# =============================================================================
__all__
=
(
'StdNoPIDsElectrons'
,
'locations'
)
# =============================================================================
from
Gaudi.Configuration
import
*
from
Configurables
import
NoPIDsParticleMaker
from
CommonParticles.Utils
import
*
## create the algorithm
algorithm
=
NoPIDsParticleMaker
(
'StdNoPIDsVeloElectrons'
,
DecayDescriptor
=
'Electron'
,
Particle
=
'electron'
)
# configure the track selector
selector
=
trackSelector
(
algorithm
,
trackTypes
=
[
"Velo"
])
## configure Data-On-Demand service
locations
=
updateDoD
(
algorithm
)
## finally: define the symbol
StdNoPIDsVeloElectrons
=
algorithm
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/StandardBasic.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StandardBasic.py
# configuration file for 'Standard Basic'
# @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl
# @date 2009-01-14
# =============================================================================
"""
Configuration file for 'Standard Basic' particles
"""
from
__future__
import
print_function
__author__
=
"Vanya BELYAEV Ivan.Belyaev@nikhef.nl"
# =============================================================================
_locations
=
{}
from
CommonParticles.StandardBasicCharged
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StandardBasicNeutral
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StandardJets
import
*
_locations
.
update
(
locations
)
# redefine the locations
locations
=
_locations
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
from
CommonParticles.Utils
import
locationsDoD
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/StandardBasicCharged.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StandardBasicCharged.py
# configuration file for 'Standard BasicCharged'
# @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl
# @date 2009-01-14
# =============================================================================
"""
Configuration file for 'Standard Basic Charged' particles
"""
from
__future__
import
print_function
__author__
=
"Vanya BELYAEV Ivan.Belyaev@nikhef.nl"
# =============================================================================
_locations
=
{}
from
CommonParticles.StandardPions
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StandardKaons
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StandardMuons
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StandardElectrons
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StandardProtons
import
*
_locations
.
update
(
locations
)
# redefine the locations
locations
=
_locations
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
from
CommonParticles.Utils
import
locationsDoD
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/StandardBasicNeutral.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StandardBasicNeutral.py
# configuration file for 'Standard Basic Neutral'
# @author Vanya BELYAEV Ivan.Belyaev@nikhef.nl
# @date 2009-01-14
# =============================================================================
"""
Configuration file for 'Standard Basic Neutral' particles
"""
from
__future__
import
print_function
__author__
=
"Vanya BELYAEV Ivan.Belyaev@nikhef.nl"
# =============================================================================
_locations
=
{}
from
CommonParticles.StandardPhotons
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StandardPi0
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StandardEta
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StdLooseDiElectron
import
*
_locations
.
update
(
locations
)
# redefine the locations
locations
=
_locations
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
from
CommonParticles.Utils
import
locationsDoD
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/StandardD0.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StandardD0.py
# configuration file for 'Standard D0'
# @author Patrick Koppenburg
# @date 2009-02-28
# =============================================================================
"""
Configuration file for 'Standard D0'
"""
from
__future__
import
print_function
__author__
=
"Patrick Koppenburg"
# =============================================================================
_locations
=
{}
from
CommonParticles.StdLooseD02KsHH
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StdLooseD02HH
import
*
_locations
.
update
(
locations
)
# redefine the locations
locations
=
_locations
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
from
CommonParticles.Utils
import
locationsDoD
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/StandardDiElectron.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #
# #
# In applying this licence, CERN does not waive the privileges and immunities #
# granted to it by virtue of its status as an Intergovernmental Organization #
# or submit itself to any jurisdiction. #
###############################################################################
# =============================================================================
# =============================================================================
## @file CommonParticles/StdLoose.py
# configuration file for 'Standard Loose DiElectron'
# @author Patrick Koppenburg
# @date 2009-12-08
# =============================================================================
"""
Configuration file for 'Standard Loose DiElectron'
"""
from
__future__
import
print_function
__author__
=
"Rob Lambert"
# =============================================================================
from
Gaudi.Configuration
import
*
## ============================================================================
## create the algorithm
_locations
=
{}
from
CommonParticles.StdLooseDiElectron
import
*
_locations
.
update
(
locations
)
from
CommonParticles.StdLooseDetachedDiElectron
import
*
_locations
.
update
(
locations
)
# redefine the locations
locations
=
_locations
## configure Data-On-Demand service
#locations = updateDoD ( StdLoose )
## ============================================================================
if
'__main__'
==
__name__
:
print
(
__doc__
)
print
(
__author__
)
from
CommonParticles.Utils
import
locationsDoD
print
(
locationsDoD
(
locations
))
# =============================================================================
# The END
# =============================================================================
Phys/CommonParticles/python/CommonParticles/StandardDiMuon.py
deleted
100755 → 0
View file @
fda3e398
#!/usr/bin/env python
###############################################################################
# (c) Copyright 2000-2018 CERN for the benefit of the LHCb Collaboration #
# #
# This software is distributed under the terms of the GNU General Public #
# Licence version 3 (GPL Version 3), copied verbatim in the file "COPYING". #