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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Computing
cbmroot
Merge requests
!100
Implement reflectivity for RICH in Geant4
Code
Review changes
Check out branch
Download
Patches
Plain diff
Expand sidebar
Merged
Implement reflectivity for RICH in Geant4
s.lebedev/cbmroot:rich1
into
master
Overview
6
Commits
1
Pipelines
7
Changes
28
All threads resolved!
Show all comments
Merged
Semen Lebedev
requested to merge
s.lebedev/cbmroot:rich1
into
master
4 years ago
Overview
6
Commits
1
Pipelines
7
Changes
28
All threads resolved!
Show all comments
Implement reflectivity for the RICH mirror using GEANT4 methods.
Update rich macros and scripts
Formatting update
0
0
Merge request reports
Compare
master
version 6
7daeaa4a
4 years ago
version 5
2695b8c6
4 years ago
version 4
19f47392
4 years ago
version 3
7ec36a6b
4 years ago
version 2
e3674bd2
4 years ago
version 1
657b8eb8
4 years ago
master (base)
and
latest version
latest version
06a52775
1 commit,
4 years ago
version 6
7daeaa4a
1 commit,
4 years ago
version 5
2695b8c6
4 commits,
4 years ago
version 4
19f47392
3 commits,
4 years ago
version 3
7ec36a6b
2 commits,
4 years ago
version 2
e3674bd2
1 commit,
4 years ago
version 1
657b8eb8
1 commit,
4 years ago
28 files
+
220
−
156
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
28
macro/rich/geotest/run_digi_geotest.C
+
2
−
2
View file @ 06a52775
Edit in single-file editor
Open in Web IDE
Show comments on this file
Show full file
@@ -5,7 +5,7 @@ void run_digi_geotest(
"/Users/slebedev/Development/cbm/data/sim/rich/geotest/param.00000.root"
,
const
string
&
digiFile
=
"/Users/slebedev/Development/cbm/data/sim/rich/geotest/digi.00000.root"
,
int
nEvents
=
1000
)
{
int
nEvents
=
1000
0
)
{
FairLogger
::
GetLogger
()
->
SetLogScreenLevel
(
"INFO"
);
FairLogger
::
GetLogger
()
->
SetLogVerbosityLevel
(
"LOW"
);
@@ -31,7 +31,7 @@ void run_digi_geotest(
CbmRichDigitizer
*
richDigitizer
=
new
CbmRichDigitizer
();
richDigitizer
->
SetMaxNofHitsPerPmtCut
(
65
);
run
.
SetDigitizer
(
kRich
,
richDigitizer
,
"RichPoint"
,
true
);
run
.
SetDigitizer
(
ECbmModuleId
::
kRich
,
richDigitizer
,
"RichPoint"
,
true
);
run
.
Run
(
nEvents
);
Loading