]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TRD/AliTRDSimParam.cxx
Update of calibration framework
[u/mrichter/AliRoot.git] / TRD / AliTRDSimParam.cxx
index 4190e6624b529cf7cbb3a2ccc620205917a17689..01fa56b37c587aceb4e47ebe515b68c2c39e75c7 100644 (file)
@@ -109,6 +109,8 @@ AliTRDSimParam::AliTRDSimParam()
   fTimeCoupling       = 0.0;
   fTimeStructOn       = kFALSE;
   
+  fPRFOn              = kFALSE;
+  
   Init();
 }
 
@@ -162,6 +164,9 @@ void AliTRDSimParam::Init()
   // Use drift time maps
   fTimeStructOn = kTRUE;
   
+  // The pad response function
+  fPRFOn          = kTRUE;
+
   ReInit();
 }
 
@@ -257,6 +262,8 @@ void AliTRDSimParam::Copy(TObject &p) const
   target->fAnodeWireOffset    = fAnodeWireOffset;
   target->fPadCoupling        = fPadCoupling;
   target->fTimeCoupling       = fTimeCoupling;
+  
+  target->fPRFOn              = fPRFOn;
 }
 
 //_____________________________________________________________________________