Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Boole
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
LHCb
Boole
Commits
dccba3dd
Commit
dccba3dd
authored
1 year ago
by
Xiaofan Hu
Browse files
Options
Downloads
Patches
Plain Diff
remove header file
parent
fe5c1ee2
No related branches found
No related tags found
Tags containing commit
1 merge request
!477
Draft: modernise bcmdigi properties
Pipeline
#5903852
passed
1 year ago
Stage: test
Stage: .post
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Bcm/BcmDigi/src/BcmDigitization.cpp
+20
-1
20 additions, 1 deletion
Bcm/BcmDigi/src/BcmDigitization.cpp
Bcm/BcmDigi/src/BcmDigitization.h
+0
-38
0 additions, 38 deletions
Bcm/BcmDigi/src/BcmDigitization.h
with
20 additions
and
39 deletions
Bcm/BcmDigi/src/BcmDigitization.cpp
+
20
−
1
View file @
dccba3dd
...
...
@@ -8,11 +8,30 @@
* granted to it by virtue of its status as an Intergovernmental Organization *
* or submit itself to any jurisdiction. *
\*****************************************************************************/
#include
<string>
#include
<vector>
#include
"BcmDigitization.h"
#include
"Event/BcmDigit.h"
#include
"Event/MCBcmDigit.h"
#include
"Event/MCHit.h"
#include
"GaudiAlg/GaudiAlgorithm.h"
class
BcmDigitization
:
public
GaudiAlgorithm
{
public:
// Constructor: A constructor of this form must be provided.
using
GaudiAlgorithm
::
GaudiAlgorithm
;
// StatusCode initialize() override;
StatusCode
execute
()
override
;
private:
Gaudi
::
Property
<
std
::
string
>
m_bcmHitsLocation
{
this
,
"BcmHitsLocation"
,
"MC/Bcm/Hits"
,
"BcmHitsLocation"
};
Gaudi
::
Property
<
std
::
string
>
m_bcmDigitLocation
{
this
,
"BcmDigitLocation"
,
LHCb
::
BcmDigitLocation
::
Default
,
"BcmDigitLocation"
};
Gaudi
::
Property
<
std
::
string
>
m_bcmMCDigitLocation
{
this
,
"BcmMCDigitLocation"
,
LHCb
::
MCBcmDigitLocation
::
Default
,
"BcmMCDigitLocation"
};
Gaudi
::
Property
<
bool
>
m_bcmMCDigits
{
this
,
"MakeMCBcmDigits"
,
true
,
"MakeMCBcmDigits"
};
};
DECLARE_COMPONENT
(
BcmDigitization
)
...
...
This diff is collapsed.
Click to expand it.
Bcm/BcmDigi/src/BcmDigitization.h
deleted
100755 → 0
+
0
−
38
View file @
fe5c1ee2
/*****************************************************************************\
* (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. *
\*****************************************************************************/
#ifndef BCMDIGI_BCMDIGITIZATION_H
#define BCMDIGI_BCMDIGITIZATION_H 1
#include
<string>
// From Gaudi
#include
"Event/BcmDigit.h"
#include
"Event/MCBcmDigit.h"
#include
"Event/MCHit.h"
#include
"GaudiAlg/GaudiAlgorithm.h"
class
BcmDigitization
:
public
GaudiAlgorithm
{
public:
// Constructor: A constructor of this form must be provided.
using
GaudiAlgorithm
::
GaudiAlgorithm
;
StatusCode
execute
()
override
;
private:
Gaudi
::
Property
<
std
::
string
>
m_bcmHitsLocation
{
this
,
"BcmHitsLocation"
,
"MC/Bcm/Hits"
,
"BcmHitsLocation"
};
Gaudi
::
Property
<
std
::
string
>
m_bcmDigitLocation
{
this
,
"BcmDigitLocation"
,
LHCb
::
BcmDigitLocation
::
Default
,
"BcmDigitLocation"
};
Gaudi
::
Property
<
std
::
string
>
m_bcmMCDigitLocation
{
this
,
"BcmMCDigitLocation"
,
LHCb
::
MCBcmDigitLocation
::
Default
,
"BcmMCDigitLocation"
};
Gaudi
::
Property
<
bool
>
m_bcmMCDigits
{
this
,
"MakeMCBcmDigits"
,
true
,
"MakeMCBcmDigits"
};
};
#endif
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment