Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Benedikt Hegner
Gaudi
Commits
10cb1fc9
Commit
10cb1fc9
authored
Dec 12, 2019
by
Marco Clemencic
Browse files
Add copyright and license
parent
64759305
Changes
1000
Hide whitespace changes
Inline
Side-by-side
Too many changes to show.
To preserve performance only
20 of 1000+
files are displayed.
Plain diff
Email patch
.gitlab-ci.yml
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
stages
:
-
build
-
test
...
...
@@ -103,6 +113,12 @@ check-formatting:
when
:
on_failure
expire_in
:
1 day
check-copyright
:
image
:
gitlab-registry.cern.ch/ci-tools/ci-worker:cc7
script
:
-
curl -o lb-check-copyright "https://gitlab.cern.ch/lhcb-core/LbDevTools/raw/master/LbDevTools/SourceTools.py?inline=false"
-
python lb-check-copyright origin/${TARGET_BRANCH}
doxygen
:
stage
:
test
dependencies
:
...
...
CMakeLists.txt
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
cmake_minimum_required
(
VERSION 3.6
)
# Configurable options for building Gaudi in the ATLAS software stack:
...
...
Gaudi/CMakeLists.txt
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
gaudi_subdir
(
Gaudi
)
gaudi_depends_on_subdirs
(
GaudiKernel
)
...
...
Gaudi/python/Configurables.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
import
sys
import
Gaudi.Configurables
sys
.
modules
[
__name__
]
=
Gaudi
.
Configurables
Gaudi/python/Gaudi/CommonGaudiConfigurables.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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: Gaudi/CommonGaudiConfigurables.py
# Author: Pere Mato (pere.mato@cern.ch)
"""
...
...
Gaudi/python/Gaudi/Configuration.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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: Gaudi/python/Gaudi/Configuration.py
# Author: Pere Mato (pere.mato@cern.ch)
from
__future__
import
absolute_import
...
...
Gaudi/python/Gaudi/Main.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
__future__
import
print_function
import
sys
import
os
...
...
Gaudi/python/Gaudi/__init__.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
import
os
import
sys
import
ctypes
...
...
Gaudi/scripts/gaudirun.bat
View file @
10cb1fc9
#####################################################################################
#
(
c
)
Copyright
1998
-
2019
CERN
for
the
benefit
of
the
LHCb
and
ATLAS
collaborations
#
# #
#
This
software
is
distributed
under
the
terms
of
the
Apache
version
2
licence
,
#
#
copied
verbatim
in
the
file
"LICENSE"
. #
# #
#
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
. #
#####################################################################################
@echo
off
python
.exe
%~d0%~p0
gaudirun
.py
%
1
%
2
%
3
%
4
%
5
%
6
%
7
%
8
%
9
Gaudi/scripts/gaudirun.py
View file @
10cb1fc9
#!/usr/bin/env python
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
__future__
import
print_function
import
os
...
...
Gaudi/src/main.cpp
View file @
10cb1fc9
/***********************************************************************************\
* (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations *
* *
* This software is distributed under the terms of the Apache version 2 licence, *
* copied verbatim in the file "LICENSE". *
* *
* 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. *
\***********************************************************************************/
#include "GaudiKernel/Kernel.h"
extern
"C"
GAUDI_IMPORT
int
GaudiMain
(
int
argc
,
char
*
argv
[]
);
...
...
Gaudi/tests/nose/test_bug_34769.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
def
test
():
try
:
from
Gaudi.Configuration
import
ApplicationMgr
,
OutputStream
...
...
Gaudi/tests/nose/test_gaudi_1179.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
subprocess
import
Popen
,
PIPE
import
os
...
...
Gaudi/tests/pyjobopts/bug_35347.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
Gaudi.Configuration
import
*
from
GaudiKernel.Configurable
import
ConfigurableGeneric
...
...
Gaudi/tests/pyjobopts/case_sensitivity.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
Gaudi.Configuration
import
*
...
...
Gaudi/tests/pyjobopts/conf_to_str.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
Gaudi.Configuration
import
*
MessageSvc
().
OutputLevel
=
INFO
...
...
Gaudi/tests/pyjobopts/export_oldopts/special_cases.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
Gaudi.Configuration
import
ConfigurableUser
from
GaudiKernel.Configurable
import
ConfigurableAlgorithm
...
...
Gaudi/tests/pyjobopts/main.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
Gaudi.Configuration
import
*
MessageSvc
().
OutputLevel
=
INFO
...
...
Gaudi/tests/pyjobopts/main_err.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
Gaudi.Configuration
import
*
MessageSvc
().
OutputLevel
=
INFO
...
...
Gaudi/tests/pyjobopts/override.py
View file @
10cb1fc9
#####################################################################################
# (c) Copyright 1998-2019 CERN for the benefit of the LHCb and ATLAS collaborations #
# #
# This software is distributed under the terms of the Apache version 2 licence, #
# copied verbatim in the file "LICENSE". #
# #
# 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. #
#####################################################################################
from
Gaudi.Configuration
import
*
MessageSvc
(
OutputLevel
=
100
)
Prev
1
2
3
4
5
…
50
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment