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
f68385ae
Commit
f68385ae
authored
2 years ago
by
Pierre-Alain Loizeau
Browse files
Options
Downloads
Patches
Plain Diff
Fixes to mCBM 2022 event and reco macros for digievent L1 support
parent
9c8f9fa7
No related branches found
No related tags found
1 merge request
!1090
Enable mCBM 2022 real data L1 reco for CI
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
macro/beamtime/mcbm2022/mcbm_event.C
+4
-1
4 additions, 1 deletion
macro/beamtime/mcbm2022/mcbm_event.C
macro/beamtime/mcbm2022/mcbm_reco.C
+6
-4
6 additions, 4 deletions
macro/beamtime/mcbm2022/mcbm_reco.C
with
10 additions
and
5 deletions
macro/beamtime/mcbm2022/mcbm_event.C
+
4
−
1
View file @
f68385ae
...
...
@@ -480,7 +480,10 @@ Bool_t mcbm_event(std::string infile,
evBuildRaw
->
ChangeMuchBeamtimeDigiFlag
();
// Enable DigiEvent output if requested
if
(
bDigiEvtsOutput
)
evBuildRaw
->
SetDigiEventOutput
();
if
(
bDigiEvtsOutput
)
{
evBuildRaw
->
SetDigiEventOutput
();
evBuildRaw
->
SetDigiEventExclusiveTrdExtraction
();
}
evBuildRaw
->
SetOutFilename
(
histosfilename
);
// evBuildRaw->SetOutputBranchPersistent("CbmEvent", kFALSE);
...
...
This diff is collapsed.
Click to expand it.
macro/beamtime/mcbm2022/mcbm_reco.C
+
6
−
4
View file @
f68385ae
...
...
@@ -544,13 +544,15 @@ Bool_t mcbm_reco(UInt_t uRunId = 2391,
TString
tofGeoTag
;
if
(
geoSetup
->
GetGeoTag
(
ECbmModuleId
::
kTof
,
tofGeoTag
))
{
TString
parFile
=
gSystem
->
Getenv
(
"VMCWORKDIR"
);
parFile
=
parFile
+
"/parameters/tof/tof_matbudget_"
+
tofGeoTag
+
".root "
;
// parFile = parFile + "/parameters/tof/tof_matbudget_v21d_mcbm.root";
std
::
cout
<<
"Using material budget file "
<<
parFile
<<
std
::
endl
;
//parFile = parFile + "/parameters/tof/tof_matbudget_" + tofGeoTag + ".root ";";
//std::cout << "Using material budget file " << parFile << std::endl;
// FIXME
parFile
=
parFile
+
"/parameters/tof/tof_matbudget_v21d_mcbm.root"
;
std
::
cout
<<
"FIXME: Using material budget file tof_matbudget_v21d_mcbm as right one not in repo!!!"
<<
std
::
endl
;
l1
->
SetTofMaterialBudgetFileName
(
parFile
.
Data
());
}
/// PAL, 08/02/2023: Is the following comment still valid with the current master?
// Workaround to get it running:
// 1) Change fUseGlobal in line 129 of CbmStsParSetModule.h to
// Bool_t fUseGlobal = kTRUE;
...
...
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