Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Common/TableProducer/occupancyTableProducer.cxx
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
// All rights not expressly granted are reserved.
//
// This software is distributed under the terms of the GNU general Public
// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
//
// In applying this license CERN does not waive the privileges and immunities
// granted to it by virtue of its status as an Intergovernmental Organization
// or submit itself to any jurisdiction.

Check failure on line 10 in Common/TableProducer/occupancyTableProducer.cxx

View workflow job for this annotation

GitHub Actions / PR formatting / copyright headers

Missing or malformed copyright notice

This source file is missing the correct copyright notice.
/// \file occupancyTableProducer.cxx
/// \brief Occupancy Table Producer : TPC PID - Calibration
/// Occupancy calculater using tracks which have entry for collision and trackQA tables
Expand Down Expand Up @@ -703,7 +703,7 @@
auto it = std::find(bcTFMap[idx].begin(), bcTFMap[idx].end(), bc.globalIndex()); // will find the iterator where object is placed.
if (it != bcTFMap[idx].end()) {
occIDX = idx; // Element is in the vector
} else { // Element is not in the vector
} else { // Element is not in the vector
occIDX = -1;
}

Expand Down
Loading