@@ -51,7 +51,7 @@ class Digitizer
5151
5252 void init ();
5353
54- o2::trk::ChipSimResponse* getChipResponse (int chipID);
54+ const o2::trk::ChipSimResponse* getChipResponse (int chipID);
5555
5656 // / Steer conversion of hits to digits
5757 void process (const std::vector<o2::trk::Hit>* hits, int evID, int srcID);
@@ -66,7 +66,6 @@ class Digitizer
6666 bool isContinuous () const { return mParams .isContinuous (); }
6767 void fillOutputContainer (uint32_t maxFrame = 0xffffffff );
6868
69- void setDigiParams (const o2::trk::DigiParams& par) { mParams = par; }
7069 const o2::trk::DigiParams& getDigitParams () const { return mParams ; }
7170
7271 // provide the common trk::GeometryTGeo to access matrices and segmentation
@@ -142,12 +141,9 @@ class Digitizer
142141
143142 int mNumberOfChips = 0 ;
144143
145- o2::trk::ChipSimResponse* mChipSimResp = nullptr ; // simulated response
146- o2::trk::ChipSimResponse* mChipSimRespVD = nullptr ; // simulated response for VD chips
147- o2::trk::ChipSimResponse* mChipSimRespMLOT = nullptr ; // simulated response for ML/OT chips
148-
149- // std::string mResponseFile = "$(O2_ROOT)/share/Detectors/ITSMFT/data/AlpideResponseData/AlpideResponseData.root";
150- std::string mResponseFile = " $(O2_ROOT)/share/Detectors/Upgrades/ITS3/data/ITS3ChipResponseData/APTSResponseData.root" ; // / using temporarly the APTS response
144+ const o2::trk::ChipSimResponse* mChipSimResp = nullptr ; // simulated response
145+ const o2::trk::ChipSimResponse* mChipSimRespVD = nullptr ; // simulated response for VD chips
146+ const o2::trk::ChipSimResponse* mChipSimRespMLOT = nullptr ; // simulated response for ML/OT chips
151147
152148 bool mSimRespOrientation {false }; // wether the orientation in the response function is flipped
153149 float mSimRespVDShift {0 .f }; // adjusting the Y-shift in the APTS response function to match sensor local coord.
0 commit comments