Skip to content

Commit e1411f9

Browse files
committed
bugfix const in AnalysisTask.test.cpp; fix typos in ReadMe
1 parent a500e40 commit e1411f9

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ Basic objects are:<br>
2929
- Hit (position and signal)<br>
3030
- Module (id and signal)<br>
3131
Four mentioned objects are so-called channelized:
32-
they contain set of channels (namely tracks, prticles, hits or modules) in each event<br>
32+
they contain set of channels (namely tracks, particles, hits or modules) in each event<br>
3333
- EventHeader (vertex position) - contains information related to specific event<br>
3434
- DataHeader - contains common information for all events<br>
3535
- Matching - establishes a correspondence between channels in channelized objects (e.g. between simulated particle and reconstructed track).
3636

37-
Additionaly to mandatory information specified in round brackets (a.k.a. "default fileds"), each object can contain any number of integer, floating or boolean fields (a.k.a. "user-defined fields").
37+
Additionally to mandatory information specified in round brackets (a.k.a. "default fields"), each object can contain any number of integer, floating or boolean fields (a.k.a. "user-defined fields").
3838
Information about all fields in all branches is stored in Configuration object.
3939

4040
## Installation

infra/AnalysisTask.test.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ class AnalysisTaskTest : public AnalysisTask {
6161
void Finish() override {
6262
AnalysisTask::Finish();
6363

64-
for (const auto& entry : entries_test_) {
65-
for (const auto& var : entry) {
64+
for (auto& entry : entries_test_) {
65+
for (auto& var : entry) {
6666
var.mean_ /= var.n_entries_;
6767
var.sigma_ /= var.n_entries_;
6868
}

0 commit comments

Comments
 (0)