Skip to content

Commit 42b26fc

Browse files
committed
Fix formatting errors
1 parent 7cb17aa commit 42b26fc

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Common/TableProducer/PID/pidTPCML.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ class Network
4646
template <typename C, typename T>
4747
std::array<float, 6> createInputFromTrack(const C&, const T&, const uint8_t) const; // create a std::vector<float> with all the inputs for the network
4848
std::vector<Ort::Value> createTensor(std::array<float, 6>) const; // create a std::vector<Ort::Value> (= ONNX tensor) for model input
49-
float* evalNetwork(std::vector<Ort::Value>); // evaluate the network on a std::vector<Ort::Value> (= ONNX tensor)
50-
float* evalNetwork(std::vector<float>); // evaluate the network on a std::vector<float>
49+
float* evalNetwork(std::vector<Ort::Value>); // evaluate the network on a std::vector<Ort::Value> (= ONNX tensor)
50+
float* evalNetwork(std::vector<float>); // evaluate the network on a std::vector<float>
5151

5252
// Getters & Setters
5353
int getInputDimensions() const { return mInputShapes[0][1]; };
@@ -66,7 +66,7 @@ class Network
6666
std::vector<std::vector<int64_t>> mInputShapes;
6767
std::vector<std::string> mOutputNames;
6868
std::vector<std::vector<int64_t>> mOutputShapes;
69-
69+
7070
float nClNorm = 152.f;
7171

7272
// Internal function for printing the shape of tensors: See https://github.com/saganatt/PID_ML_in_O2 or O2Physics/Tools/PIDML/simpleApplyPidOnnxModel.cxx

0 commit comments

Comments
 (0)