Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
cbmroot
Manage
Activity
Members
Labels
Plan
Wiki
Redmine
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
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
Computing
cbmroot
Commits
b24b5a16
Commit
b24b5a16
authored
4 years ago
by
Pierre-Alain Loizeau
Browse files
Options
Downloads
Patches
Plain Diff
Change name of CbmEvent array in reco classes in mvd folder
parent
d7b8325d
No related branches found
No related tags found
1 merge request
!173
mCBM 2020: Event based reco with STS, RICH and PSD
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
fles/mcbm2018/tasks/CbmCheckEvents.cxx
+4
-4
4 additions, 4 deletions
fles/mcbm2018/tasks/CbmCheckEvents.cxx
mvd/CbmMvdClusterfinderTB.cxx
+1
-1
1 addition, 1 deletion
mvd/CbmMvdClusterfinderTB.cxx
mvd/CbmMvdDigiToHitTB.cxx
+1
-1
1 addition, 1 deletion
mvd/CbmMvdDigiToHitTB.cxx
with
6 additions
and
6 deletions
fles/mcbm2018/tasks/CbmCheckEvents.cxx
+
4
−
4
View file @
b24b5a16
...
@@ -84,12 +84,12 @@ InitStatus CbmCheckEvents::Init() {
...
@@ -84,12 +84,12 @@ InitStatus CbmCheckEvents::Init() {
fEvents
=
dynamic_cast
<
TClonesArray
*>
(
ioman
->
GetObject
(
"CbmEvent"
));
fEvents
=
dynamic_cast
<
TClonesArray
*>
(
ioman
->
GetObject
(
"CbmEvent"
));
if
(
nullptr
==
fEvents
)
{
if
(
nullptr
==
fEvents
)
{
if
(
nullptr
!=
(
ioman
->
GetObject
(
"Event"
)))
{
if
(
nullptr
!=
(
ioman
->
GetObject
(
"
Cbm
Event"
)))
{
LOG
(
error
)
<<
"Got pointer of type"
LOG
(
error
)
<<
"Got pointer of type"
<<
typeid
(
ioman
->
GetObject
(
"Event"
)).
name
();
<<
typeid
(
ioman
->
GetObject
(
"
Cbm
Event"
)).
name
();
LOG
(
error
)
<<
"Got Object of type"
LOG
(
error
)
<<
"Got Object of type"
<<
typeid
(
*
(
ioman
->
GetObject
(
"Event"
))).
name
();
<<
typeid
(
*
(
ioman
->
GetObject
(
"
Cbm
Event"
))).
name
();
}
// if( nullptr != (ioman->GetObject("Event") )
}
// if( nullptr != (ioman->GetObject("
Cbm
Event") )
LOG
(
fatal
)
<<
"No TClonesArray with events found."
;
LOG
(
fatal
)
<<
"No TClonesArray with events found."
;
}
// if (nullptr == fEvents)
}
// if (nullptr == fEvents)
...
...
This diff is collapsed.
Click to expand it.
mvd/CbmMvdClusterfinderTB.cxx
+
1
−
1
View file @
b24b5a16
...
@@ -121,7 +121,7 @@ InitStatus CbmMvdClusterfinderTB::Init() {
...
@@ -121,7 +121,7 @@ InitStatus CbmMvdClusterfinderTB::Init() {
}
}
// ********** Get input arrays
// ********** Get input arrays
fEvents
=
(
TClonesArray
*
)
ioman
->
GetObject
(
"Event"
);
fEvents
=
dynamic_cast
<
TClonesArray
*
>
(
ioman
->
GetObject
(
"
Cbm
Event"
)
)
;
fDigiMan
=
CbmDigiManager
::
Instance
();
fDigiMan
=
CbmDigiManager
::
Instance
();
fDigiMan
->
Init
();
fDigiMan
->
Init
();
...
...
This diff is collapsed.
Click to expand it.
mvd/CbmMvdDigiToHitTB.cxx
+
1
−
1
View file @
b24b5a16
...
@@ -118,7 +118,7 @@ InitStatus CbmMvdDigiToHitTB::Init() {
...
@@ -118,7 +118,7 @@ InitStatus CbmMvdDigiToHitTB::Init() {
}
}
// ********** Get input arrays
// ********** Get input arrays
fEvents
=
(
TClonesArray
*
)
ioman
->
GetObject
(
"Event"
);
fEvents
=
dynamic_cast
<
TClonesArray
*
>
(
ioman
->
GetObject
(
"
Cbm
Event"
)
)
;
fInputDigis
=
(
TClonesArray
*
)
ioman
->
GetObject
(
"MvdDigi"
);
fInputDigis
=
(
TClonesArray
*
)
ioman
->
GetObject
(
"MvdDigi"
);
fEventDigis
=
new
TClonesArray
(
"CbmMvdDigi"
,
10000
);
fEventDigis
=
new
TClonesArray
(
"CbmMvdDigi"
,
10000
);
...
...
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