Skip to content

Commit

Permalink
[ALCA-DB-L1] Apply code checks/format
Browse files Browse the repository at this point in the history
  • Loading branch information
smuzaffar committed Dec 18, 2024
1 parent b205513 commit 0e08584
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CondFormats/L1TObjects/src/L1MuDTEtaPatternLut.cc
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ int L1MuDTEtaPatternLut::load() {

// assemble file name
edm::FileInPath lut_f = edm::FileInPath(string(defaultPath + eau_dir + "ETFPatternList.lut"));
string etf_file = lut_f.fullPath();
const string& etf_file = lut_f.fullPath();

// open file
L1TriggerLutFile file(etf_file);
Expand Down
2 changes: 1 addition & 1 deletion CondFormats/L1TObjects/src/L1MuDTExtLut.cc
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ int L1MuDTExtLut::load() {

// assemble file name
edm::FileInPath lut_f = edm::FileInPath(string(defaultPath + ext_dir + ext_str + ".lut"));
string ext_file = lut_f.fullPath();
const string& ext_file = lut_f.fullPath();

// open file
L1TriggerLutFile file(ext_file);
Expand Down
2 changes: 1 addition & 1 deletion CondFormats/L1TObjects/src/L1MuDTPhiLut.cc
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ int L1MuDTPhiLut::load() {

// assemble file name
edm::FileInPath lut_f = edm::FileInPath(string(defaultPath + phi_dir + phi_str + ".lut"));
string phi_file = lut_f.fullPath();
const string& phi_file = lut_f.fullPath();

// open file
L1TriggerLutFile file(phi_file);
Expand Down
2 changes: 1 addition & 1 deletion CondFormats/L1TObjects/src/L1MuDTPtaLut.cc
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ int L1MuDTPtaLut::load() {

// assemble file name
edm::FileInPath lut_f = edm::FileInPath(string(defaultPath + pta_dir + pta_str + ".lut"));
string pta_file = lut_f.fullPath();
const string& pta_file = lut_f.fullPath();

// open file
L1TriggerLutFile file(pta_file);
Expand Down
2 changes: 1 addition & 1 deletion CondFormats/L1TObjects/src/L1MuDTQualPatternLut.cc
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ int L1MuDTQualPatternLut::load() {

// assemble file name
edm::FileInPath lut_f = edm::FileInPath(string(defaultPath + eau_dir + emu_str + ".lut"));
string emu_file = lut_f.fullPath();
const string& emu_file = lut_f.fullPath();

// open file
L1TriggerLutFile file(emu_file);
Expand Down

0 comments on commit 0e08584

Please sign in to comment.