Skip to content

Commit

Permalink
code-format
Browse files Browse the repository at this point in the history
  • Loading branch information
slava77devel committed Jun 6, 2024
1 parent 9f697fd commit 314e95d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RecoTracker/LSTCore/src/alpaka/LSTESData.dev.cc
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ namespace {
std::stringstream search_path(std::getenv("CMSSW_SEARCH_PATH"));
std::string path;
while (std::getline(search_path, path, ':')) {
if (std::filesystem::exists(path+"/RecoTracker/LSTCore/data")) {
if (std::filesystem::exists(path + "/RecoTracker/LSTCore/data")) {
path_str = path;
break;
}
Expand Down
5 changes: 3 additions & 2 deletions RecoTracker/LSTCore/standalone/code/core/trkCore.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1079,8 +1079,9 @@ void writeMetaData() {
gSystem->Exec(
TString::Format("(cd $TRACKLOOPERDIR && git --no-pager status && (cd - > /dev/null)) >> %s.gitversion.txt",
ana.output_tfile->GetName()));
gSystem->Exec(TString::Format("(cd $TRACKLOOPERDIR && echo 'git --no-pager log -n 100' && (cd - > /dev/null)) >> %s.gitversion.txt",
ana.output_tfile->GetName()));
gSystem->Exec(TString::Format(
"(cd $TRACKLOOPERDIR && echo 'git --no-pager log -n 100' && (cd - > /dev/null)) >> %s.gitversion.txt",
ana.output_tfile->GetName()));
gSystem->Exec(TString::Format("(cd $TRACKLOOPERDIR && echo 'git diff' && (cd - > /dev/null)) >> %s.gitversion.txt",
ana.output_tfile->GetName()));
gSystem->Exec(
Expand Down

0 comments on commit 314e95d

Please sign in to comment.