Skip to content

Commit c2f2d99

Browse files
committed
pidTPCModule.h: Fix pointer initialisation
1 parent 8f1a453 commit c2f2d99

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

Common/Tools/PID/pidTPCModule.h

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,14 +201,10 @@ typedef struct Str_dEdx_correction {
201201
class pidTPCModule
202202
{
203203
public:
204-
pidTPCModule()
205-
{
206-
// constructor
207-
}
208204
o2::aod::pid::pidTPCConfigurables pidTPCopts;
209205

210206
// TPC PID Response
211-
o2::pid::tpc::Response* response;
207+
o2::pid::tpc::Response* response{nullptr};
212208

213209
// Network correction for TPC PID response
214210
ml::OnnxModel network;

0 commit comments

Comments
 (0)