Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
CEPCSW
Manage
Activity
Members
Labels
Plan
Issues
6
Issue boards
Milestones
Wiki
Code
Merge requests
7
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
cepc
CEPCSW
Commits
1624439a
Commit
1624439a
authored
4 years ago
by
lintao@ihep.ac.cn
Browse files
Options
Downloads
Patches
Plain Diff
WIP: start to design the dE/dx simulation tool.
parent
24e944be
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Simulation/DetSimInterface/DetSimInterface/IDedxSimTool.h
+29
-0
29 additions, 0 deletions
Simulation/DetSimInterface/DetSimInterface/IDedxSimTool.h
with
29 additions
and
0 deletions
Simulation/DetSimInterface/DetSimInterface/IDedxSimTool.h
0 → 100644
+
29
−
0
View file @
1624439a
#ifndef IDedxSimTool_h
#define IDedxSimTool_h
/*
* Description:
* IDedxSimTool is used to give a dE/dx value during simulation.
*
* The interface:
* * dedx: predict the dE/dx according to Geant4 Step
*
* Author: Tao Lin <lintao@ihep.ac.cn>
*/
#include
"GaudiKernel/IAlgTool.h"
class
G4Step
;
class
IDedxSimTool
:
virtual
public
IAlgTool
{
public:
DeclareInterfaceID
(
IDedxSimTool
,
0
,
1
);
virtual
~
IDedxSimTool
()
{}
virtual
double
dedx
(
const
G4Step
*
aStep
)
=
0
;
};
#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