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
854462db
Commit
854462db
authored
1 year ago
by
Sergey Gorbunov
Committed by
Sergey Gorbunov
1 year ago
Browse files
Options
Downloads
Patches
Plain Diff
clang-format
parent
3671314b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1575
simplify the interface of run_qa.C macro
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
macro/run/run_qa.C
+5
-3
5 additions, 3 deletions
macro/run/run_qa.C
with
5 additions
and
3 deletions
macro/run/run_qa.C
+
5
−
3
View file @
854462db
...
...
@@ -111,7 +111,7 @@ void run_qa(TString dataTra = "data/sis100_muon_jpsi_test", TString dataRaw = "d
TString
geoTag
;
// - MUCH digitisation parameters
TString
muchParFile
{};
TString
muchParFile
{};
if
(
CbmSetup
::
Instance
()
->
GetGeoTag
(
ECbmModuleId
::
kMuch
,
geoTag
))
{
bool
mcbmFlag
=
geoTag
.
Contains
(
"mcbm"
,
TString
::
kIgnoreCase
);
muchParFile
=
srcDir
+
"/parameters/much/much_"
;
...
...
@@ -169,7 +169,7 @@ void run_qa(TString dataTra = "data/sis100_muon_jpsi_test", TString dataRaw = "d
FairRootFileSink
*
sink
=
new
FairRootFileSink
(
sinkFile
);
run
->
SetSink
(
sink
);
TString
monitorFile
{
sinkFile
};
TString
monitorFile
{
sinkFile
};
monitorFile
.
ReplaceAll
(
"qa"
,
"qa.monitor"
);
FairMonitor
::
GetMonitor
()
->
EnableMonitor
(
kTRUE
,
monitorFile
);
...
...
@@ -259,7 +259,9 @@ void run_qa(TString dataTra = "data/sis100_muon_jpsi_test", TString dataRaw = "d
auto
*
pCaOutputQa
=
new
cbm
::
ca
::
OutputQa
(
verbose
,
bUseMC
);
pCaOutputQa
->
SetStsTrackingMode
();
pCaOutputQa
->
ReadParameters
(
caParFile
.
Data
());
if
(
configName
.
Length
()
!=
0
)
{
pCaOutputQa
->
SetConfigName
(
configName
);
}
if
(
configName
.
Length
()
!=
0
)
{
pCaOutputQa
->
SetConfigName
(
configName
);
}
pCaOutputQa
->
SetUseMvd
(
bUseMvd
);
pCaOutputQa
->
SetUseSts
(
bUseSts
);
//pCaOutputQa->SetUseMuch(bUseMuch);
...
...
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