Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
DD4hep
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cepc
externals
mirroring
DD4hep
Commits
7b3acb3e
Commit
7b3acb3e
authored
11 years ago
by
Frank Gaede
Browse files
Options
Downloads
Patches
Plain Diff
- added missing file
parent
2a2a84a9
No related branches found
Branches containing commit
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
examples/ILDExDet/include/GearWrapper.h
+60
-0
60 additions, 0 deletions
examples/ILDExDet/include/GearWrapper.h
with
60 additions
and
0 deletions
examples/ILDExDet/include/GearWrapper.h
0 → 100644
+
60
−
0
View file @
7b3acb3e
#ifndef GearWrapper_H
#define GearWrapper_H
//====================================================================
#include
"DD4hep/Detector.h"
//#include "DD4hepExceptions.h"
#include
"gear/GEAR.h"
#include
"gear/TPCParameters.h"
#include
"gearimpl/TPCParametersImpl.h"
#include
"gearimpl/ZPlanarParametersImpl.h"
namespace
DD4hep
{
//// generic wrapper class for gear::XXXParametersImpl:
//template <class GEAR>
//struct GearWrapper : public GEAR {
// // required c'tors for extension mechanism
// GearWrapper(const Geometry::DetElement& d){}
// GearWrapper(const GearWrapper<GEAR>& c,const Geometry::DetElement& det){}
//} ;
//
//// specialized c'tor
//template <>
//GearWrapper<gear::TPCParametersImpl>( double maxDriftLength, int coordinateType )
//: gear::TPCParametersImpl( maxDriftLength, coordinateType){ }
//
//typedef GearWrapper<gear::TPCParametersImpl> GearTPCParameters ;
// wrapper class for gear::TPCParametersImpl:
struct
GearTPCParameters
:
public
gear
::
TPCParametersImpl
{
// required c'tors for extension mechanism
GearTPCParameters
(
const
Geometry
::
DetElement
&
d
){}
GearTPCParameters
(
const
GearTPCParameters
&
c
,
const
Geometry
::
DetElement
&
det
){}
GearTPCParameters
(
double
maxDriftLength
,
int
coordinateType
)
:
gear
::
TPCParametersImpl
(
maxDriftLength
,
coordinateType
){}
}
;
struct
GearZPlanarParameters
:
public
gear
::
ZPlanarParametersImpl
{
// required c'tors for extension mechanism
GearZPlanarParameters
(
const
Geometry
::
DetElement
&
d
)
:
gear
::
ZPlanarParametersImpl
(
ZPlanarParametersImpl
::
CMOS
,
0
,
0
,
0
,
0
,
0
)
{}
GearZPlanarParameters
(
const
GearZPlanarParameters
&
c
,
const
Geometry
::
DetElement
&
det
)
:
gear
::
ZPlanarParametersImpl
(
ZPlanarParametersImpl
::
CMOS
,
0
,
0
,
0
,
0
,
0
)
{}
GearZPlanarParameters
(
int
type
=
ZPlanarParametersImpl
::
CMOS
,
double
shellInnerRadius
=
0.
,
double
shellOuterRadius
=
0.
,
double
shellHalfLength
=
0.
,
double
shellGap
=
0.
,
double
shellRadLength
=
0.
)
:
gear
::
ZPlanarParametersImpl
(
type
,
shellInnerRadius
,
shellOuterRadius
,
shellHalfLength
,
shellGap
,
shellRadLength
){}
}
;
}
#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