Skip to content

Commit 17e14c1

Browse files
committed
Please consider the following formatting changes
1 parent 27aef63 commit 17e14c1

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

Detectors/Upgrades/ITS3/macros/test/CheckChipResponseFile.C

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -57,25 +57,25 @@ void LoadRespFunc()
5757
std::string AptsFile = "$(O2_ROOT)/share/Detectors/Upgrades/ITS3/data/ITS3ChipResponseData/APTSResponseData.root";
5858
std::string AlpideFile = "$(O2_ROOT)/share/Detectors/ITSMFT/data/AlpideResponseData/AlpideResponseData.root";
5959

60-
std::cout<<"=====================\n";
60+
std::cout << "=====================\n";
6161
LOGP(info, "ALPIDE Vbb=0V response");
6262
mAlpSimResp0 = loadResponse(AlpideFile, "response0"); // Vbb=0V
6363
mAlpSimResp0->computeCentreFromData();
6464
mAlpSimResp0->print();
6565
LOGP(info, "Response Centre {}", mAlpSimResp0->getRespCentreDep());
66-
std::cout<<"=====================\n";
66+
std::cout << "=====================\n";
6767
LOGP(info, "ALPIDE Vbb=-3V response");
6868
mAlpSimResp1 = loadResponse(AlpideFile, "response1"); // Vbb=-3V
6969
mAlpSimResp1->computeCentreFromData();
7070
mAlpSimResp1->print();
7171
LOGP(info, "Response Centre {}", mAlpSimResp1->getRespCentreDep());
72-
std::cout<<"=====================\n";
72+
std::cout << "=====================\n";
7373
LOGP(info, "APTS response");
7474
mAptSimResp1 = loadResponse(AptsFile, "response1"); // APTS
7575
mAptSimResp1->computeCentreFromData();
7676
mAptSimResp1->print();
7777
LOGP(info, "Response Centre {}", mAptSimResp1->getRespCentreDep());
78-
std::cout<<"=====================\n";
78+
std::cout << "=====================\n";
7979
}
8080

8181
std::vector<float> getCollectionSeediciencies(o2::its3::ChipSimResponse* resp,
@@ -143,8 +143,8 @@ void CheckChipResponseFile()
143143
std::vector<float> vecDepth;
144144
int numPoints = 100;
145145
for (int i = 0; i < numPoints; ++i) {
146-
float value = -50 + i * (100.0f / (numPoints - 1));
147-
vecDepth.push_back(value);
146+
float value = -50 + i * (100.0f / (numPoints - 1));
147+
vecDepth.push_back(value);
148148
}
149149

150150
int colors[] = {kOrange + 7, kRed + 1, kAzure + 4};

0 commit comments

Comments
 (0)