Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
H
HEPnOS
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
sds
HEP
HEPnOS
Commits
479346ad
Commit
479346ad
authored
Apr 24, 2018
by
Matthieu Dorier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
added copyright header
parent
0d8a2168
Changes
25
Show whitespace changes
Inline
Side-by-side
Showing
25 changed files
with
126 additions
and
0 deletions
+126
-0
include/hepnos/DataSet.hpp
include/hepnos/DataSet.hpp
+5
-0
include/hepnos/DataStore.hpp
include/hepnos/DataStore.hpp
+5
-0
include/hepnos/Demangle.hpp
include/hepnos/Demangle.hpp
+5
-0
include/hepnos/Event.hpp
include/hepnos/Event.hpp
+5
-0
include/hepnos/EventNumber.hpp
include/hepnos/EventNumber.hpp
+5
-0
include/hepnos/Exception.hpp
include/hepnos/Exception.hpp
+5
-0
include/hepnos/KeyValueContainer.hpp
include/hepnos/KeyValueContainer.hpp
+5
-0
include/hepnos/Run.hpp
include/hepnos/Run.hpp
+5
-0
include/hepnos/RunNumber.hpp
include/hepnos/RunNumber.hpp
+5
-0
include/hepnos/RunSet.hpp
include/hepnos/RunSet.hpp
+5
-0
include/hepnos/SubRun.hpp
include/hepnos/SubRun.hpp
+5
-0
include/hepnos/SubRunNumber.hpp
include/hepnos/SubRunNumber.hpp
+5
-0
src/DataSet.cpp
src/DataSet.cpp
+5
-0
src/DataStore.cpp
src/DataStore.cpp
+5
-0
src/Event.cpp
src/Event.cpp
+5
-0
src/Run.cpp
src/Run.cpp
+5
-0
src/RunSet.cpp
src/RunSet.cpp
+5
-0
src/SubRun.cpp
src/SubRun.cpp
+6
-0
src/private/DataSetImpl.hpp
src/private/DataSetImpl.hpp
+5
-0
src/private/DataStoreImpl.hpp
src/private/DataStoreImpl.hpp
+5
-0
src/private/EventImpl.hpp
src/private/EventImpl.hpp
+5
-0
src/private/KeyTypes.hpp
src/private/KeyTypes.hpp
+5
-0
src/private/RunImpl.hpp
src/private/RunImpl.hpp
+5
-0
src/private/RunSetImpl.hpp
src/private/RunSetImpl.hpp
+5
-0
src/private/SubRunImpl.hpp
src/private/SubRunImpl.hpp
+5
-0
No files found.
include/hepnos/DataSet.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_DATA_SET_H
#define __HEPNOS_DATA_SET_H
...
...
include/hepnos/DataStore.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_DATA_STORE_H
#define __HEPNOS_DATA_STORE_H
...
...
include/hepnos/Demangle.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_DEMANGLE_H
#define __HEPNOS_DEMANGLE_H
...
...
include/hepnos/Event.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_EVENT_H
#define __HEPNOS_EVENT_H
...
...
include/hepnos/EventNumber.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_EVENT_NUMBER_H
#define __HEPNOS_EVENT_NUMBER_H
...
...
include/hepnos/Exception.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_EXCEPTION_H
#define __HEPNOS_EXCEPTION_H
...
...
include/hepnos/KeyValueContainer.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_KEYVAL_CONTAINER_H
#define __HEPNOS_KEYVAL_CONTAINER_H
...
...
include/hepnos/Run.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_RUN_H
#define __HEPNOS_RUN_H
...
...
include/hepnos/RunNumber.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_RUN_NUMBER_H
#define __HEPNOS_RUN_NUMBER_H
...
...
include/hepnos/RunSet.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_RUN_SET_H
#define __HEPNOS_RUN_SET_H
...
...
include/hepnos/SubRun.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_SUBRUN_H
#define __HEPNOS_SUBRUN_H
...
...
include/hepnos/SubRunNumber.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_SUB_RUN_NUMBER_H
#define __HEPNOS_SUB_RUN_NUMBER_H
...
...
src/DataSet.cpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#include "hepnos/DataSet.hpp"
#include "hepnos/Run.hpp"
#include "hepnos/RunSet.hpp"
...
...
src/DataStore.cpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#include <vector>
#include <functional>
#include <iostream>
...
...
src/Event.cpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#include "hepnos/Event.hpp"
#include "private/EventImpl.hpp"
#include "private/DataStoreImpl.hpp"
...
...
src/Run.cpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#include "hepnos/Run.hpp"
#include "private/RunImpl.hpp"
#include "private/SubRunImpl.hpp"
...
...
src/RunSet.cpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#include <iomanip>
#include <sstream>
#include <string>
...
...
src/SubRun.cpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#include "hepnos/SubRun.hpp"
#include "private/SubRunImpl.hpp"
#include "private/EventImpl.hpp"
...
...
src/private/DataSetImpl.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_PRIVATE_DATASET_IMPL_H
#define __HEPNOS_PRIVATE_DATASET_IMPL_H
...
...
src/private/DataStoreImpl.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_PRIVATE_DATASTORE_IMPL
#define __HEPNOS_PRIVATE_DATASTORE_IMPL
...
...
src/private/EventImpl.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_PRIVATE_EVENT_IMPL_H
#define __HEPNOS_PRIVATE_EVENT_IMPL_H
...
...
src/private/KeyTypes.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __PRIVATE_KEY_TYPES_H
#define __PRIVATE_KEY_TYPES_H
...
...
src/private/RunImpl.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_PRIVATE_RUN_IMPL_H
#define __HEPNOS_PRIVATE_RUN_IMPL_H
...
...
src/private/RunSetImpl.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_PRIVATE_RUNSET_IMPL_H
#define __HEPNOS_PRIVATE_RUNSET_IMPL_H
...
...
src/private/SubRunImpl.hpp
View file @
479346ad
/*
* (C) 2018 The University of Chicago
*
* See COPYRIGHT in top-level directory.
*/
#ifndef __HEPNOS_PRIVATE_SUBRUN_IMPL_H
#define __HEPNOS_PRIVATE_SUBRUN_IMPL_H
...
...
Write
Preview
Markdown
is supported
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