Skip to content

Commit 3211133

Browse files
committed
Used scram build code-format
1 parent 4c3ab65 commit 3211133

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

HLTriggerOffline/Exotica/src/HLTExoticaPlotter.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ void HLTExoticaPlotter::analyze(const bool &isPassTrigger,
154154
}
155155

156156
if (!dxys.empty() &&
157-
(objType == EVTColContainer::ELEC || objType == EVTColContainer::MUON || objType == EVTColContainer::MUTRK)){
157+
(objType == EVTColContainer::ELEC || objType == EVTColContainer::MUON || objType == EVTColContainer::MUTRK)) {
158158
this->fillHist(isPassTrigger, source, objTypeStr, "Dxy", dxys[jaux]);
159159
++jaux;
160160
}

HLTriggerOffline/Exotica/src/HLTExoticaSubAnalysis.cc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -712,21 +712,21 @@ void HLTExoticaSubAnalysis::analyze(const edm::Event &iEvent, const edm::EventSe
712712
this->fillHist("rec", objTypeStr, "SumEt", theSumEt[objType]);
713713
}
714714

715-
if(objType == 11){
715+
if (objType == 11) {
716716
float dxyRec = trkObjs[objType].at(jel)->dxy(cols->bs->position());
717717
this->fillHist("rec", objTypeStr, "Dxy", dxyRec);
718718
dxys.push_back(dxyRec);
719719
++jel;
720720
}
721721

722-
if(objType == 13){
722+
if (objType == 13) {
723723
float dxyRec = trkObjs[objType].at(jmu)->dxy(cols->bs->position());
724724
this->fillHist("rec", objTypeStr, "Dxy", dxyRec);
725725
dxys.push_back(dxyRec);
726726
++jmu;
727727
}
728728

729-
if(objType == 130){
729+
if (objType == 130) {
730730
float dxyRec = trkObjs[objType].at(jmutrk)->dxy(cols->bs->position());
731731
this->fillHist("rec", objTypeStr, "Dxy", dxyRec);
732732
dxys.push_back(dxyRec);

0 commit comments

Comments
 (0)