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
54df0e6d
Commit
54df0e6d
authored
3 years ago
by
David Emschermann
Browse files
Options
Downloads
Patches
Plain Diff
fix eventDisplay files in the macro/run directory based on experience with mCBM
parent
e833d186
No related branches found
Branches containing commit
Tags
dev_2021_46
Tags containing commit
1 merge request
!558
fix eventDisplay files in the macro/run directory based on experience with mCBM
Pipeline
#13628
passed
3 years ago
Stage: build
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
macro/run/eventDisplay.C
+5
-1
5 additions, 1 deletion
macro/run/eventDisplay.C
macro/run/run_transport.C
+1
-0
1 addition, 0 deletions
macro/run/run_transport.C
with
6 additions
and
1 deletion
macro/run/eventDisplay.C
+
5
−
1
View file @
54df0e6d
...
@@ -22,7 +22,11 @@ void eventDisplay(TString dataset = "test")
...
@@ -22,7 +22,11 @@ void eventDisplay(TString dataset = "test")
rtdb
->
setFirstInput
(
parInput1
);
rtdb
->
setFirstInput
(
parInput1
);
FairEventManager
*
fMan
=
new
FairEventManager
();
FairEventManager
*
fMan
=
new
FairEventManager
();
FairMCTracks
*
Track
=
new
FairMCTracks
(
"Monte-Carlo Tracks"
);
// for fairroot > v18.6.x
FairGeoTracksDraw
*
Track
=
new
FairGeoTracksDraw
();
// // FairMCTracksDraw *Track = new FairMCTracksDraw();
// for fairroot < v18.6.x
// FairMCTracks* Track = new FairMCTracks("Monte-Carlo Tracks");
FairMCPointDraw
*
MvdPoint
=
new
FairMCPointDraw
(
"MvdPoint"
,
kBlack
,
kFullSquare
);
FairMCPointDraw
*
MvdPoint
=
new
FairMCPointDraw
(
"MvdPoint"
,
kBlack
,
kFullSquare
);
FairMCPointDraw
*
StsPoint
=
new
FairMCPointDraw
(
"StsPoint"
,
kBlue
,
kFullSquare
);
FairMCPointDraw
*
StsPoint
=
new
FairMCPointDraw
(
"StsPoint"
,
kBlue
,
kFullSquare
);
...
...
This diff is collapsed.
Click to expand it.
macro/run/run_transport.C
+
1
−
0
View file @
54df0e6d
...
@@ -90,6 +90,7 @@ void run_transport(Int_t nEvents = 2, const char* setupName = "sis100_electron",
...
@@ -90,6 +90,7 @@ void run_transport(Int_t nEvents = 2, const char* setupName = "sis100_electron",
run
.
SetTarget
(
"Gold"
,
0
.
025
,
2
.
5
);
run
.
SetTarget
(
"Gold"
,
0
.
025
,
2
.
5
);
run
.
SetBeamPosition
(
0
.,
0
.,
0
.
1
,
0
.
1
);
run
.
SetBeamPosition
(
0
.,
0
.,
0
.
1
,
0
.
1
);
run
.
SetRandomEventPlane
();
run
.
SetRandomEventPlane
();
// run.StoreTrajectories();
run
.
Run
(
nEvents
);
run
.
Run
(
nEvents
);
// ------------------------------------------------------------------------
// ------------------------------------------------------------------------
...
...
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