Skip to content
Snippets Groups Projects
Commit 1624439a authored by lintao@ihep.ac.cn's avatar lintao@ihep.ac.cn
Browse files

WIP: start to design the dE/dx simulation tool.

parent 24e944be
No related branches found
No related tags found
No related merge requests found
#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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment