]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSresponseSPDdubna.cxx
fix some coding violations.
[u/mrichter/AliRoot.git] / ITS / AliITSresponseSPDdubna.cxx
index bc6ee5f408909e795bd56797f596a0756226dd45..a3f5cbd4d4cf83c977125e4e7dfe41075be30e31 100644 (file)
  * provided "as is" without express or implied warranty.                  *
  **************************************************************************/
 
-#include <TMath.h>
-
+#include<Riostream.h>
 #include "AliITSresponseSPDdubna.h"
+//////////////////////////////////////////////////////
+//  Response class for set:ITS                      //
+//  Specific subdetector implementation for         //
+//  Silicon pixels                                  //
+//  This is and alternative version                 //
+//  to the default version                          //
+////////////////////////////////////////////////////// 
+const Float_t AliITSresponseSPDdubna::fgkNoiseDefault = 200.;
+const Float_t AliITSresponseSPDdubna::fgkThresholdDefault = 2000.;
+
 //___________________________________________
 ClassImp(AliITSresponseSPDdubna)       
 
-AliITSresponseSPDdubna::AliITSresponseSPDdubna()
-{
-  // constructor
-   SetDiffCoeff();
-   SetNoiseParam();
-   SetDataType();
-   SetMinVal();
+AliITSresponseSPDdubna::AliITSresponseSPDdubna() : AliITSresponse(){
+   // Default constructor
+   // Inputs:
+   //    none.
+   // Outputs:
+   //    none.
+   // Return:
+   //    A default constructed AliITSresponseSPD class
+
+   SetNoiseParam(fgkNoiseDefault,0.);  // fNoise, fBaseline
+   SetThresholds(fgkThresholdDefault,0.);   // fThreshold
+   SetCouplings();   // fCouplCol, fCouplRow
+   SetFractionDeadPixels(); // fDeadPixels
+   SetDataType();    // fDataType
+}
+//_________________________________________________________________________
+Bool_t AliITSresponseSPDdubna::IsPixelDead(Int_t mod,Int_t ix,Int_t iz) const {
+  // Returns kTRUE if pixel is dead
+  // Inputs:
+  //    Int_t mod      module number
+  //    Int_t ix       x pixel number
+  //    Int_t iz       z pixel number
+  // Outputs:
+  //    none.
+  // Return:
+  //    kFALSE if pixel is alive, or kTRUE if pixel is dead.
+  Bool_t  dead = kFALSE;
+  Int_t   seed;
+  static TRandom ran; // don't use gRandom. This must not be a true randome
+  // sequence. These sequence must be random one and then fully repetable.
+
+  seed = mod*256*256+iz*256+ix;
+  ran.SetSeed(seed);
+  if(ran.Rndm(0)<fDeadPixels) dead = kTRUE;
+  return dead;
+}
+
+//----------------------------------------------------------------------
+void AliITSresponseSPDdubna::Print(ostream *os) const{
+    // Standard output format for this class.
+    // Inputs:
+    //    ostream *os  Pointer to the output stream
+    // Outputs:
+    //    none:
+    // Return:
+    //    none.
+
+    AliITSresponse::Print(os);
+    *os << fNoise << " " << fBaseline << " " << fCouplCol << " ";
+    *os << fCouplRow << " "<< fThreshold << " " << fDeadPixels << " ";
+    *os << fDataType;
+//    *os << " " << endl;
+    return;
+}
+
+//----------------------------------------------------------------------
+void AliITSresponseSPDdubna::Read(istream *is) {
+    // Standard input format for this class.
+    // Inputs:
+    //    ostream *os  Pointer to the output stream
+    // Outputs:
+    //    none:
+    // Return:
+    //    none.
+
+    AliITSresponse::Read(is);
+    *is >> fNoise >> fBaseline >> fCouplCol >> fCouplRow;
+    *is >> fThreshold >> fDeadPixels >> fDataType;
+    return;
+}
+//----------------------------------------------------------------------
+
+ostream &operator<<(ostream &os,AliITSresponseSPDdubna &p){
+    // Standard output streaming function.
+    // Inputs:
+    //    ostream *os  Pointer to the output stream
+    // Outputs:
+    //    none:
+    // Return:
+    //    none.
+
+    p.Print(&os);
+    return os;
+}
+
+//----------------------------------------------------------------------
+istream &operator>>(istream &is,AliITSresponseSPDdubna &r){
+    // Standard input streaming function.
+    // Inputs:
+    //    ostream *os  Pointer to the output stream
+    // Outputs:
+    //    none:
+    // Return:
+    //    none.
 
+    r.Read(&is);
+    return is;
 }
+//----------------------------------------------------------------------