]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
These files are now included in AliITSgeomSPD since they are now only
authornilsen <nilsen@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 3 Feb 2001 00:08:11 +0000 (00:08 +0000)
committernilsen <nilsen@f7af4fe6-9843-0410-8265-dc069ae4e863>
Sat, 3 Feb 2001 00:08:11 +0000 (00:08 +0000)
specific initilizers.

ITS/AliITSgeomSPD300.cxx [deleted file]
ITS/AliITSgeomSPD300.h [deleted file]
ITS/AliITSgeomSPD425.cxx [deleted file]
ITS/AliITSgeomSPD425.h [deleted file]

diff --git a/ITS/AliITSgeomSPD300.cxx b/ITS/AliITSgeomSPD300.cxx
deleted file mode 100644 (file)
index 37a49eb..0000000
+++ /dev/null
@@ -1,176 +0,0 @@
-/**************************************************************************
- * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- *                                                                        *
- * Author: The ALICE Off-line Project.                                    *
- * Contributors are mentioned in the code where appropriate.              *
- *                                                                        *
- * Permission to use, copy, modify and distribute this software and its   *
- * documentation strictly for non-commercial purposes is hereby granted   *
- * without fee, provided that the above copyright notice appears in all   *
- * copies and that both the copyright notice and this permission notice   *
- * appear in the supporting documentation. The authors make no claims     *
- * about the suitability of this software for any purpose. It is          *
- * provided "as is" without express or implied warranty.                  *
- **************************************************************************/
-
-/*
-$Log$
-Revision 1.7  2000/10/02 16:32:35  barbera
-Forward declaration added
-
-Revision 1.1.2.8  2000/10/02 15:52:05  barbera
-Forward declaration added
-
-Revision 1.6  2000/07/10 16:07:18  fca
-Release version of ITS code
-
-Revision 1.4  2000/06/10 20:34:37  nilsen
-Fixed compilation warning with HP unix.
-
-Revision 1.3  2000/06/10 10:43:04  nilsen
-Fixed bug in copy and operator =.
-
-
-*/
-
-#include "TBRIK.h"
-#include "AliITSgeomSPD300.h"
-
-ClassImp(AliITSgeomSPD300)
-
-AliITSgeomSPD300::AliITSgeomSPD300(){
-////////////////////////////////////////////////////////////////////////
-//    default constructor, for ITS TDR geometry.
-////////////////////////////////////////////////////////////////////////
-const Float_t kdx=0.6400,kdy=0.0075,kdz=4.1890; // cm; Standard pixel detector
-                                                // size is 2dx wide, 2dz long,
-                                                // and 2dy thick. Geant 3.12
-                                                // units.
-const Float_t kbinx0 = 0.0050; // cm; Standard pixel size in x direction.
-const Int_t   knbinx = 256;    // number of pixels along x direction.
-const Float_t kbinz0 = 0.0300; // cm; Standard pixel size in z direction.
-const Int_t   knbinz = 279;    // number of pixels along z direction.
-    Int_t i;
-
-    fDx = kdx;  // default value.
-    fDy = kdy;  // default value.
-    fDz = kdz;  // default value.
-    fNbinx = knbinx; // default number of bins in x.
-    fNbinz = knbinz; // default number of bins in z.
-
-    fBinSizeX = new Float_t[fNbinx]; // array of bin sizes along x.
-    for(i=0;i<fNbinx;i++) fBinSizeX[i] = kbinx0; // default x bin size.
-    fBinSizeZ = new Float_t[fNbinz]; // array of bin sizes along z.
-    for(i=0;i<fNbinz;i++) fBinSizeZ[i] = kbinz0; // default z bin size.
-
-    // correct detector size for bin size.
-    fDx = 0.0;
-    for(i=0;i<fNbinx;i++) fDx +=fBinSizeX[i];
-    fDx *= 0.5;
-    fDz = 0.0;
-    for(i=0;i<fNbinz;i++) fDz +=fBinSizeZ[i];
-    fDz *= 0.5;
-
-    fShapeSPD = new TBRIK("ActiveSPD","Active volume of SPD","SPD SI DET",
-                         fDx,fDy,fDz);
-}
-//______________________________________________________________________
-AliITSgeomSPD300::AliITSgeomSPD300(Float_t dy,Int_t nx,Float_t *bx,
-                                               Int_t nz,Float_t *bz){
-////////////////////////////////////////////////////////////////////////
-//    default constructor, for a User modified TDR based geometry.
-////////////////////////////////////////////////////////////////////////
-    Int_t i;
-    fDx = 0.0;
-    fDy =  dy;
-    fDz = 0.0;
-    fNbinx = nx; // new number of bins in x.
-    fNbinz = nz; // new number of bins in z.
-
-    fBinSizeX = new Float_t[fNbinx]; // array of bin sizes along x.
-    for(i=0;i<fNbinx;i++) fBinSizeX[i] = bx[i]; // new x bin size.
-    fBinSizeZ = new Float_t[fNbinz]; // array of bin sizes along z.
-    for(i=0;i<fNbinz;i++) fBinSizeZ[i] = bz[i]; // new z bin size.
-
-    // correct detector size for bin size.
-    for(i=0;i<fNbinx;i++) fDx +=fBinSizeX[i];
-    fDx *= 0.5;
-    for(i=0;i<fNbinz;i++) fDz +=fBinSizeZ[i];
-    fDz *= 0.5;
-
-    fShapeSPD = new TBRIK("ActiveSPD","Active volume of SPD","SPD SI DET",
-                         fDx,fDy,fDz);
-}
-//______________________________________________________________________
-AliITSgeomSPD300::AliITSgeomSPD300(AliITSgeomSPD300 &source){
-  // copy constructor
-    Int_t i;
-    if(&source == this) return;
-    this->fShapeSPD = new TBRIK(*(source.fShapeSPD));
-    this->fDx = source.fDx;
-    this->fDy = source.fDy;
-    this->fDz = source.fDz;
-    if(this->fBinSizeX) delete[] this->fBinSizeX; 
-    if(this->fBinSizeX) delete[] this->fBinSizeZ;
-    this->fNbinx = source.fNbinx;
-    this->fBinSizeX = new Float_t[this->fNbinx];
-    this->fNbinz = source.fNbinz;
-    this->fBinSizeZ = new Float_t[this->fNbinz];
-    for(i=0;i<fNbinx;i++) this->fBinSizeX[i] = source.fBinSizeX[i];
-    for(i=0;i<fNbinz;i++) this->fBinSizeZ[i] = source.fBinSizeZ[i];
-}
-//______________________________________________________________________
-AliITSgeomSPD300& AliITSgeomSPD300::operator=(AliITSgeomSPD300 &source){
-  // = operator
-    Int_t i;
-    if(&source == this) return *this;
-    this->fShapeSPD = new TBRIK(*(source.fShapeSPD));
-    this->fDx = source.fDx;
-    this->fDy = source.fDy;
-    this->fDz = source.fDz;
-    if(this->fBinSizeX) delete[] this->fBinSizeX; 
-    if(this->fBinSizeX) delete[] this->fBinSizeZ;
-    this->fNbinx = source.fNbinx;
-    this->fBinSizeX = new Float_t[this->fNbinx];
-    this->fNbinz = source.fNbinz;
-    this->fBinSizeZ = new Float_t[this->fNbinz];
-    for(i=0;i<fNbinx;i++) this->fBinSizeX[i] = source.fBinSizeX[i];
-    for(i=0;i<fNbinz;i++) this->fBinSizeZ[i] = source.fBinSizeZ[i];
-    return *this;
-}
-//______________________________________________________________________
-AliITSgeomSPD300::~AliITSgeomSPD300(){
-  // destructor
-    delete[] fBinSizeX;
-    delete[] fBinSizeZ;
-    delete   fShapeSPD;
-}
-//______________________________________________________________________
-void AliITSgeomSPD300::ReSetBins(Float_t dy,Int_t nx,Float_t *bx,
-                                        Int_t nz,Float_t *bz){
-////////////////////////////////////////////////////////////////////////
-//    default constructor, for a User modified TDR based geometry.
-////////////////////////////////////////////////////////////////////////
-    Int_t i;
-    fDx = 0.0;
-    fDy =  dy;
-    fDz = 0.0;
-    fNbinx = nx; // new number of bins in x.
-    fNbinz = nz; // new number of bins in z.
-
-    if(fBinSizeX!=0) delete[] fBinSizeX;
-    fBinSizeX = new Float_t[fNbinx]; // array of bin sizes along x.
-    for(i=0;i<fNbinx;i++) fBinSizeX[i] = bx[i]; // new x bin size.
-    if(fBinSizeZ!=0) delete[] fBinSizeZ;
-    fBinSizeZ = new Float_t[fNbinz]; // array of bin sizes along z.
-    for(i=0;i<fNbinz;i++) fBinSizeZ[i] = bz[i]; // new z bin size.
-
-    // correct detector size for bin size.
-    for(i=0;i<fNbinx;i++) fDx +=fBinSizeX[i];
-    fDx *= 0.5;
-    for(i=0;i<fNbinz;i++) fDz +=fBinSizeZ[i];
-    fDz *= 0.5;
-
-    fShapeSPD = new TBRIK("ActiveSPD","Active volume of SPD","SPD SI DET",
-                         fDx,fDy,fDz);
-}
diff --git a/ITS/AliITSgeomSPD300.h b/ITS/AliITSgeomSPD300.h
deleted file mode 100644 (file)
index 0a7280f..0000000
+++ /dev/null
@@ -1,50 +0,0 @@
-#ifndef ALIITSGEOMSPD300_H
-#define ALIITSGEOMSPD300_H
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-/* $Id$ */
-
-#include "AliITSgeomSPD.h"
-
-
-class TBRIK;
-class AliITSgeomSPD300:public AliITSgeomSPD {
-
- public:
-    AliITSgeomSPD300();
-    AliITSgeomSPD300(Float_t cy,Int_t Nx,Float_t *bx,Int_t Nz,Float_t *bz);
-    AliITSgeomSPD300(AliITSgeomSPD300 &source);
-    virtual ~AliITSgeomSPD300();
-    AliITSgeomSPD300& operator=(AliITSgeomSPD300 &source);
-    TShape *GetShape() {return fShapeSPD;} // returns shape of sensitive volume
-    Float_t GetDx() {return fDx;} // returns width of seneitive volume cm
-    Float_t GetDy() {return fDy;} // returns thickness of seneitive volume cm
-    Float_t GetDz() {return fDz;} // returns lenght of seneitive volume cm
-    Int_t   GetNbinsX() {return fNbinx;} // returns number of x pixels
-    Float_t GetBinSizeX(Int_t i) {return fBinSizeX[i];} // x pixel size cm
-    Int_t   GetNbinsZ() {return fNbinz;}  // number of z pixels
-    Float_t GetBinSizeZ(Int_t i) {return fBinSizeZ[i];} // z pixel size cm
-    void    ReSetBins(Float_t dy,Int_t Nx, Float_t *bx,Int_t Nz,Float_t *bz);
-
- private:
-    // define shape of active area using ROOT shapes so that they can
-    // be easly plotted. Inputs to TBRIK are
-    // Shape name (what ever that is)
-    // Shape title (what ever that means)
-    // name of material (something I took from ITSgeometry.tme file
-    // dx => 1/2 thickness of wafer's active volume (cm)
-    // dy => 1/2 r*phi size of active volume (cm)
-    // dz => 1/2 size of active volume (cm)
-    TBRIK   *fShapeSPD;   // Shape of sensitive volume
-    Float_t fDx;          // Brick half width cm
-    Float_t fDy;          // Brick half thickness cm
-    Float_t fDz;          // Brick half length cm
-    Int_t   fNbinx;      // Number of pixels in x
-    Int_t   fNbinz;      // Number of pixels in z
-    Float_t *fBinSizeX;  //[fNbinx] Pixel size in X, cm
-    Float_t *fBinSizeZ;  //[fNbinz] Pixel size in Z, cm
-
-    ClassDef(AliITSgeomSPD300,2) // ITS SPD detector geometry class for 300X50 micron pixel size.
-};
-#endif
diff --git a/ITS/AliITSgeomSPD425.cxx b/ITS/AliITSgeomSPD425.cxx
deleted file mode 100644 (file)
index 1ef3cf7..0000000
+++ /dev/null
@@ -1,194 +0,0 @@
-/**************************************************************************
- * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- *                                                                        *
- * Author: The ALICE Off-line Project.                                    *
- * Contributors are mentioned in the code where appropriate.              *
- *                                                                        *
- * Permission to use, copy, modify and distribute this software and its   *
- * documentation strictly for non-commercial purposes is hereby granted   *
- * without fee, provided that the above copyright notice appears in all   *
- * copies and that both the copyright notice and this permission notice   *
- * appear in the supporting documentation. The authors make no claims     *
- * about the suitability of this software for any purpose. It is          *
- * provided "as is" without express or implied warranty.                  *
- **************************************************************************/
-
-/*
-$Log$
-Revision 1.7  2000/10/02 16:32:35  barbera
-Forward declaration added
-
-Revision 1.1.2.8  2000/10/02 15:52:05  barbera
-Forward declaration added
-
-Revision 1.6  2000/07/10 16:07:18  fca
-Release version of ITS code
-
-Revision 1.4  2000/06/10 20:34:22  nilsen
-Fixed compilation warning with HP unix.
-
-Revision 1.3  2000/06/10 10:42:49  nilsen
-Fixed bug in copy and operator =.
-
-
-*/
-
-#include <TShape.h>
-#include <TBRIK.h>
-
-#include "AliITSgeomSPD425.h"
-
-ClassImp(AliITSgeomSPD425)
-
-AliITSgeomSPD425::AliITSgeomSPD425(){
-////////////////////////////////////////////////////////////////////////
-//    default constructor, for ITS post TDR geometry.
-////////////////////////////////////////////////////////////////////////
-
-const Float_t kdx=0.6400,kdy=0.0075,kdz=4.23625;// cm; Standard pixel detector
-                                                // size is 2dx wide, 2dz long,
-                                                // and 2dy thick. Geant 3.12
-                                                // units.
-const Float_t kbinx0 = 0.0050; // cm; Standard pixel size in x direction.
-const Int_t   knbinx = 256;    // number of pixels along x direction.
-const Float_t kbinz0 = 0.0425; // cm; Standard pixel size in z direction.
-const Float_t kbinz1 = 0.0625; // cm; Special pixel size in z direction.
-const Int_t   knbinz = 197;    // number of pixels along z direction.
-    Int_t i;
-
-    fDx = kdx;  // default value.
-    fDy = kdy;  // default value.
-    fDz = kdz;  // default value.
-    fNbinx = knbinx; // default number of bins in x.
-    fNbinz = knbinz; // default number of bins in z.
-
-    fBinSizeX = new Float_t[fNbinx]; // array of bin sizes along x.
-    for(i=0;i<fNbinx;i++) fBinSizeX[i] = kbinx0; // default x bin size.
-    fBinSizeZ = new Float_t[fNbinz]; // array of bin sizes along z.
-    for(i=0;i<fNbinz;i++) fBinSizeZ[i] = kbinz0; // default z bin size.
-    fBinSizeZ[ 31] = kbinz1;
-    fBinSizeZ[ 32] = kbinz1;
-
-    fBinSizeZ[ 64] = kbinz1;
-    fBinSizeZ[ 65] = kbinz1;
-
-    fBinSizeZ[ 97] = kbinz1;
-    fBinSizeZ[ 98] = kbinz1;
-
-    fBinSizeZ[130] = kbinz1;
-    fBinSizeZ[131] = kbinz1;
-
-    fBinSizeZ[163] = kbinz1;
-    fBinSizeZ[164] = kbinz1;
-
-    // correct detector size for bin size.
-    fDx = 0.0;
-    for(i=0;i<fNbinx;i++) fDx +=fBinSizeX[i];
-    fDx *= 0.5;
-    fDz = 0.0;
-    for(i=0;i<fNbinz;i++) fDz +=fBinSizeZ[i];
-    fDz *= 0.5;
-
-    fShapeSPD = new TBRIK("ActiveSPD","Active volume of SPD","SPD SI DET",
-                         fDx,fDy,fDz);
-}
-//______________________________________________________________________
-AliITSgeomSPD425::AliITSgeomSPD425(Float_t dy,Int_t nx,Float_t *bx,
-                                               Int_t nz,Float_t *bz){
-////////////////////////////////////////////////////////////////////////
-//    default constructor, for a User modified TDR based geometry.
-////////////////////////////////////////////////////////////////////////
-    Int_t i;
-    fDx = 0.0;
-    fDy =  dy;
-    fDz = 0.0;
-    fNbinx = nx; // new number of bins in x.
-    fNbinz = nz; // new number of bins in z.
-
-    fBinSizeX = new Float_t[fNbinx]; // array of bin sizes along x.
-    for(i=0;i<fNbinx;i++) fBinSizeX[i] = bx[i]; // new x bin size.
-    fBinSizeZ = new Float_t[fNbinz]; // array of bin sizes along z.
-    for(i=0;i<fNbinz;i++) fBinSizeZ[i] = bz[i]; // new z bin size.
-
-    // correct detector size for bin size.
-    for(i=0;i<fNbinx;i++) fDx +=fBinSizeX[i];
-    fDx *= 0.5;
-    for(i=0;i<fNbinz;i++) fDz +=fBinSizeZ[i];
-    fDz *= 0.5;
-
-    fShapeSPD = new TBRIK("ActiveSPD","Active volume of SPD","SPD SI DET",
-                         fDx,fDy,fDz);
-}
-//______________________________________________________________________
-AliITSgeomSPD425::AliITSgeomSPD425(AliITSgeomSPD425 &source){
-  // copy constructor
-    Int_t i;
-    if(&source == this) return;
-    this->fShapeSPD = new TBRIK(*(source.fShapeSPD));
-    this->fDx = source.fDx;
-    this->fDy = source.fDy;
-    this->fDz = source.fDz;
-    if(this->fBinSizeX) delete[] this->fBinSizeX; 
-    if(this->fBinSizeX) delete[] this->fBinSizeZ;
-    this->fNbinx = source.fNbinx;
-    this->fBinSizeX = new Float_t[this->fNbinx];
-    this->fNbinz = source.fNbinz;
-    this->fBinSizeZ = new Float_t[this->fNbinz];
-    for(i=0;i<fNbinx;i++) this->fBinSizeX[i] = source.fBinSizeX[i];
-    for(i=0;i<fNbinz;i++) this->fBinSizeZ[i] = source.fBinSizeZ[i];
-}
-//______________________________________________________________________
-AliITSgeomSPD425& AliITSgeomSPD425::operator=(AliITSgeomSPD425 &source){
-  // = operator
-    Int_t i;
-    if(&source == this) return *this;
-    this->fShapeSPD = new TBRIK(*(source.fShapeSPD));
-    this->fDx = source.fDx;
-    this->fDy = source.fDy;
-    this->fDz = source.fDz;
-    if(this->fBinSizeX) delete[] this->fBinSizeX; 
-    if(this->fBinSizeX) delete[] this->fBinSizeZ;
-    this->fNbinx = source.fNbinx;
-    this->fBinSizeX = new Float_t[this->fNbinx];
-    this->fNbinz = source.fNbinz;
-    this->fBinSizeZ = new Float_t[this->fNbinz];
-    for(i=0;i<fNbinx;i++) this->fBinSizeX[i] = source.fBinSizeX[i];
-    for(i=0;i<fNbinz;i++) this->fBinSizeZ[i] = source.fBinSizeZ[i];
-    return *this;
-}
-//______________________________________________________________________
-AliITSgeomSPD425::~AliITSgeomSPD425(){
-  // destructor
-    delete[] fBinSizeX;
-    delete[] fBinSizeZ;
-    delete   fShapeSPD;
-}
-//______________________________________________________________________
-void AliITSgeomSPD425::ReSetBins(Float_t dy,Int_t nx,Float_t *bx,
-                                        Int_t nz,Float_t *bz){
-////////////////////////////////////////////////////////////////////////
-//    default constructor, for a User modified TDR based geometry.
-////////////////////////////////////////////////////////////////////////
-    Int_t i;
-    fDx = 0.0;
-    fDy =  dy;
-    fDz = 0.0;
-    fNbinx = nx; // new number of bins in x.
-    fNbinz = nz; // new number of bins in z.
-
-    if(fBinSizeX!=0) delete[] fBinSizeX;
-    fBinSizeX = new Float_t[fNbinx]; // array of bin sizes along x.
-    for(i=0;i<fNbinx;i++) fBinSizeX[i] = bx[i]; // new x bin size.
-    if(fBinSizeZ!=0) delete[] fBinSizeZ;
-    fBinSizeZ = new Float_t[fNbinz]; // array of bin sizes along z.
-    for(i=0;i<fNbinz;i++) fBinSizeZ[i] = bz[i]; // new z bin size.
-
-    // correct detector size for bin size.
-    for(i=0;i<fNbinx;i++) fDx +=fBinSizeX[i];
-    fDx *= 0.5;
-    for(i=0;i<fNbinz;i++) fDz +=fBinSizeZ[i];
-    fDz *= 0.5;
-
-    fShapeSPD = new TBRIK("ActiveSPD","Active volume of SPD","SPD SI DET",
-                         fDx,fDy,fDz);
-}
diff --git a/ITS/AliITSgeomSPD425.h b/ITS/AliITSgeomSPD425.h
deleted file mode 100644 (file)
index 960caa4..0000000
+++ /dev/null
@@ -1,55 +0,0 @@
-#ifndef ALIITSGEOMSPD425_H
-#define ALIITSGEOMSPD425_H
-/* Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. *
- * See cxx source for full Copyright notice                               */
-
-/* $Id$ */
-
-
-
-#include "AliITSgeomSPD.h"
-
-
-// temporary - this will migrate into the segmentation class
-
-class TBRIK;
-class AliITSgeomSPD425 : public AliITSgeomSPD {
-
- public:
-    AliITSgeomSPD425();
-    AliITSgeomSPD425(Float_t cy,Int_t Nx,Float_t *bx,Int_t Nz,Float_t *bz);
-    AliITSgeomSPD425(AliITSgeomSPD425 &source);
-    virtual ~AliITSgeomSPD425();
-    AliITSgeomSPD425& operator=(AliITSgeomSPD425 &source);
-    TShape *GetShape() {return fShapeSPD;} // returns shape
-    Float_t GetDx() {return fDx;} // returns half detector width cm
-    Float_t GetDy() {return fDy;} // returns half detector thickness cm
-    Float_t GetDz() {return fDz;} // returns half detector lenght cm
-    Int_t   GetNbinsX() {return fNbinx;} // returns number of x pixels
-    Float_t GetBinSizeX(Int_t i) {return fBinSizeX[i];} // returns x pixel size
-    Int_t   GetNbinsZ() {return fNbinz;} // returns number of z pixels
-    Float_t GetBinSizeZ(Int_t i) {return fBinSizeZ[i];} // returns z pixel size
-    void    ReSetBins(Float_t dy,Int_t Nx, Float_t *bx,Int_t Nz,Float_t *bz);
-
- private:
-    // define shape of active area using ROOT shapes so that they can
-    // be easly plotted. Inputs to TBRIK are
-    // Shape name (what ever that is)
-    // Shape title (what ever that means)
-    // name of material (something I took from ITSgeometry.tme file
-    // fDx => 1/2 thickness of wafer's active volume (cm)
-    // fDy => 1/2 r*phi size of active volume (cm)
-    // fDz => 1/2 size of active volume (cm)
-    TBRIK *fShapeSPD;     // Shape of sensitive volume.
-    Float_t fDx;          // Brick half width cm
-    Float_t fDy;          // Brick half thickness cm
-    Float_t fDz;          // Brick half length cm
-    Int_t   fNbinz;      // Number of pixels in z
-    Int_t   fNbinx;      // Number of pixels in x
-    Float_t *fBinSizeX;  //[fNbinx] Pixel size in X, cm
-    Float_t *fBinSizeZ;  //[fNbinz] Pixel size in Z, cm
-
-    ClassDef(AliITSgeomSPD425,2) // ITS SPD detector geometry class for 425X50 micron pixel size.
-
-};
-#endif