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
1d13b074
Commit
1d13b074
authored
11 years ago
by
Markus Frank
Browse files
Options
Downloads
Patches
Plain Diff
Small modification for better support of build types
parent
da393988
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
DDCore/src/plugins/StandardPlugins.cpp
+42
-7
42 additions, 7 deletions
DDCore/src/plugins/StandardPlugins.cpp
with
42 additions
and
7 deletions
DDCore/src/plugins/StandardPlugins.cpp
+
42
−
7
View file @
1d13b074
...
@@ -21,6 +21,24 @@
...
@@ -21,6 +21,24 @@
using
namespace
std
;
using
namespace
std
;
using
namespace
DD4hep
::
Geometry
;
using
namespace
DD4hep
::
Geometry
;
static
LCDDBuildType
build_type
(
const
char
*
value
)
{
if
(
strcmp
(
value
,
"BUILD_DEFAULT"
)
==
0
)
return
BUILD_DEFAULT
;
else
if
(
strcmp
(
value
,
"BUILD_SIMU"
)
==
0
)
return
BUILD_SIMU
;
else
if
(
strcmp
(
value
,
"1"
)
==
0
)
return
BUILD_DEFAULT
;
else
if
(
strcmp
(
value
,
"BUILD_RECO"
)
==
0
)
return
BUILD_RECO
;
else
if
(
strcmp
(
value
,
"2"
)
==
0
)
return
BUILD_RECO
;
else
if
(
strcmp
(
value
,
"BUILD_DISPLAY"
)
==
0
)
return
BUILD_DISPLAY
;
else
if
(
strcmp
(
value
,
"3"
)
==
0
)
return
BUILD_DISPLAY
;
throw
runtime_error
(
string
(
"Invalid build type value: "
)
+
value
);
}
static
void
*
create_lcdd_instance
(
const
char
*
/* name */
)
{
static
void
*
create_lcdd_instance
(
const
char
*
/* name */
)
{
return
&
LCDD
::
getInstance
();
return
&
LCDD
::
getInstance
();
}
}
...
@@ -44,23 +62,40 @@ static long display(LCDD& lcdd, int argc, char** argv) {
...
@@ -44,23 +62,40 @@ static long display(LCDD& lcdd, int argc, char** argv) {
DECLARE_APPLY
(
DD4hepGeometryDisplay
,
display
)
DECLARE_APPLY
(
DD4hepGeometryDisplay
,
display
)
static
long
load_compact
(
LCDD
&
lcdd
,
int
argc
,
char
**
argv
)
{
static
long
load_compact
(
LCDD
&
lcdd
,
int
argc
,
char
**
argv
)
{
for
(
int
j
=
0
;
j
<
argc
;
++
j
)
{
if
(
argc
>
0
)
{
string
input
=
argv
[
j
];
LCDDBuildType
type
=
BUILD_DEFAULT
;
cout
<<
"Processing compact input file : "
<<
input
<<
endl
;
string
input
=
argv
[
0
];
cout
<<
"Processing compact input file : "
<<
input
;
if
(
argc
>
1
)
{
type
=
build_type
(
argv
[
1
]);
cout
<<
" with flag "
<<
argv
[
1
]
<<
endl
;
lcdd
.
fromCompact
(
input
,
type
);
return
1
;
}
cout
<<
endl
;
lcdd
.
fromCompact
(
input
);
lcdd
.
fromCompact
(
input
);
return
1
;
}
}
return
1
;
return
0
;
}
}
DECLARE_APPLY
(
DD4hepCompactLoader
,
load_compact
)
DECLARE_APPLY
(
DD4hepCompactLoader
,
load_compact
)
static
long
load_xml
(
LCDD
&
lcdd
,
int
argc
,
char
**
argv
)
{
static
long
load_xml
(
LCDD
&
lcdd
,
int
argc
,
char
**
argv
)
{
if
(
argc
>=
1
)
{
if
(
argc
>
0
)
{
LCDDBuildType
type
=
BUILD_DEFAULT
;
string
input
=
argv
[
0
];
string
input
=
argv
[
0
];
cout
<<
"Processing compact input file : "
<<
input
<<
endl
;
cout
<<
"Processing compact input file : "
<<
input
;
if
(
argc
>
1
)
{
type
=
build_type
(
argv
[
1
]);
cout
<<
" with flag "
<<
argv
[
1
]
<<
endl
;
lcdd
.
fromXML
(
input
,
type
);
return
1
;
}
cout
<<
endl
;
lcdd
.
fromXML
(
input
);
lcdd
.
fromXML
(
input
);
return
1
;
return
1
;
}
}
throw
runtime_error
(
"load_xml: Invalid number of arguments [argc=0]"
)
;
return
0
;
}
}
DECLARE_APPLY
(
DD4hepXMLLoader
,
load_xml
)
DECLARE_APPLY
(
DD4hepXMLLoader
,
load_xml
)
...
...
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