Project
Loading...
Searching...
No Matches
Mille.h
Go to the documentation of this file.
1// Copyright 2019-2020 CERN and copyright holders of ALICE O2.
2// See https://alice-o2.web.cern.ch/copyright for details of the copyright holders.
3// All rights not expressly granted are reserved.
4//
5// This software is distributed under the terms of the GNU General Public
6// License v3 (GPL Version 3), copied verbatim in the file "COPYING".
7//
8// In applying this license CERN does not waive the privileges and immunities
9// granted to it by virtue of its status as an Intergovernmental Organization
10// or submit itself to any jurisdiction.
11
16
30#ifndef MILLE_H
31#define MILLE_H
32
33#include <fstream>
34#include <TArrayI.h>
35#include <TArrayF.h>
36
37namespace o2
38{
39namespace align
40{
41
42class Mille
43{
44 public:
45 Mille(const std::string& outFileName, bool asBinary = true, bool writeZero = false);
46 void mille(int NLC, const float* derLc, int NGL, const float* derGl, const int* label, float rMeas, float sigma);
47 void special(int nSpecial, const float* floatings, const int* integers);
48 void clear();
49 int finalise();
50 void kill() { clear(); }; // alias to old Mille method
51 int end() { return finalise(); } // alias to old Mille method
52
53 private:
55 static constexpr int MaxLabel = 0x7fffffff;
56 std::ofstream mOutFile = {};
57 bool mAsBinary = true;
58 bool mWriteZero = false;
59 bool mHasSpecial = false;
60 std::vector<int> mBufferInt;
61 std::vector<float> mBufferFloat;
62};
63
64} // namespace align
65} // namespace o2
66
67#endif
void mille(int NLC, const float *derLc, int NGL, const float *derGl, const int *label, float rMeas, float sigma)
Add measurement to buffer.
Definition Mille.cxx:55
void clear()
Initialize for new set of locals, e.g. new track.
Definition Mille.cxx:159
void special(int nSpecial, const float *floatings, const int *integers)
Add special data to buffer.
Definition Mille.cxx:98
void kill()
Definition Mille.h:50
int finalise()
Write buffer (set of derivatives with same local parameters) to file.
Definition Mille.cxx:129
GLuint GLsizei const GLchar * label
Definition glcorearb.h:2519
void align(gsl::span< ElinkEncoder< BareFormat, CHARGESUM > > elinks)
a couple of static helper functions to create timestamp values for CCDB queries or override obsolete ...
std::string asBinary(uint64_t value)