]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Both chip and det thicknesses set to [100,300]
authorbarbera <barbera@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 7 Jun 2001 14:42:14 +0000 (14:42 +0000)
committerbarbera <barbera@f7af4fe6-9843-0410-8265-dc069ae4e863>
Thu, 7 Jun 2001 14:42:14 +0000 (14:42 +0000)
ITS/AliITSvPPRasymm.cxx
ITS/AliITSvPPRasymm.h
ITS/AliITSvPPRsymm.cxx
ITS/AliITSvPPRsymm.h

index e3af7bab2f1cf9f617e8a9555191989befe93945..b84d17e0f3ac61bbb951aa9fa02a88a777dac7f1 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.44  2001/05/31 19:24:47  barbera
+Default values of SPD detector and chip thickness set to 200 microns as defined by the Technical Board
+
 Revision 1.43  2001/05/30 16:15:47  fca
 Correct comparison wiht AliGeant3::Class() introduced. Thanks to I.Hrivnacova
 
@@ -349,13 +352,13 @@ void AliITSvPPRasymm::CreateGeometry(){
   Float_t di1d3[3], di20a[3], di1d2[3];                      // for layer 2  
   Float_t di108[3], di104[3];                                // for both layers  
 
-  Float_t ddet1=200.;     // total detector thickness on layer 1 (micron)
-  Float_t dchip1=200.;    // total chip thickness on layer 1 (micron)
+  Float_t ddet1=300.;     // total detector thickness on layer 1 (micron)
+  Float_t dchip1=300.;    // total chip thickness on layer 1 (micron)
   
-  Float_t ddet2=200.;     // total detector thickness on layer 2 (micron)                         
-  Float_t dchip2=200.;    // total chip thickness on layer 2 (micron)
+  Float_t ddet2=300.;     // total detector thickness on layer 2 (micron)                         
+  Float_t dchip2=300.;    // total chip thickness on layer 2 (micron)
   
-  Float_t dbus=200.;      // total bus thickness on both layers (micron)
+  Float_t dbus=300.;      // total bus thickness on both layers (micron)
 
   ddet1 = GetThicknessDet1();
   ddet2 = GetThicknessDet2();
@@ -364,26 +367,26 @@ void AliITSvPPRasymm::CreateGeometry(){
 
   if(ddet1 < 100. || ddet1 > 300.) {
      cout << "ITS - WARNING: the detector thickness for layer 1 is outside the range of [100,300] microns."
-         " The default value of 200 microns will be used." << endl;
-         ddet1=200.;
+         " The default value of 300 microns will be used." << endl;
+         ddet1=300.;
   }
   
   if(ddet2 < 100. || ddet2 > 300.) {
      cout << "ITS - WARNING: the detector thickness for layer 2 is outside the range of [100,300] microns."
-         " The default value of 200 microns will be used." << endl;
-         ddet2=200.;
+         " The default value of 300 microns will be used." << endl;
+         ddet2=300.;
   }
   
-  if(dchip1 < 150. || dchip1 > 300.) {
-     cout << "ITS - WARNING: the chip thickness for layer 1 is outside the range of [150,300] microns."
-         " The default value of 200 microns will be used." << endl;
-         dchip1=200.;
+  if(dchip1 < 100. || dchip1 > 300.) {
+     cout << "ITS - WARNING: the chip thickness for layer 1 is outside the range of [100,300] microns."
+         " The default value of 300 microns will be used." << endl;
+         dchip1=300.;
   }
   
-  if(dchip2 < 150. || dchip2 > 300.) {
-     cout << "ITS - WARNING: the chip thickness for layer 2 is outside the range of [150,300] microns."
-         " The default value of 200 microns will be used." << endl;
-         dchip2=200.;
+  if(dchip2 < 100. || dchip2 > 300.) {
+     cout << "ITS - WARNING: the chip thickness for layer 2 is outside the range of [100,300] microns."
+         " The default value of 300 microns will be used." << endl;
+         dchip2=300.;
   }      
 
   Int_t rails = 1;       // flag for rails (1 --> rails in; 0 --> rails out)
index f345b05eb8e8614d7c7f89099bd4d846cb82f41a..4d0cbb17e16b3dab766891839cefe42c55216d04 100644 (file)
@@ -42,16 +42,16 @@ class AliITSvPPRasymm : public AliITS {
                             fEuclidGeometry=f;fEuclidOut = kTRUE;}
     virtual void   SetMinorVersion(Int_t v=22){ // Choose between existing minor versions
        fMinorVersion = v;}
-    virtual void   SetThicknessDet1(Float_t v=200.){ 
+    virtual void   SetThicknessDet1(Float_t v=300.){ 
         // Set detector thickness in layer 1
         fDet1 = v;}
-    virtual void   SetThicknessDet2(Float_t v=200.){ 
+    virtual void   SetThicknessDet2(Float_t v=300.){ 
         // Set detector thickness in layer 2
         fDet2 = v;}
-    virtual void   SetThicknessChip1(Float_t v=200.){ 
+    virtual void   SetThicknessChip1(Float_t v=300.){ 
         // Set chip thickness in layer 1
         fChip1 = v;}            
-    virtual void   SetThicknessChip2(Float_t v=200.){ 
+    virtual void   SetThicknessChip2(Float_t v=300.){ 
         // Set chip thickness in layer 2
         fChip2 = v;}
     virtual void   SetRails(Int_t v=1){ 
index 9e0b0aaeec5aa8c296e88e8bcd3a36815f01ab4d..1b4dbc57a83cb73c85e0cca37e4e534d6972e012 100644 (file)
@@ -15,6 +15,9 @@
 
 /*
 $Log$
+Revision 1.28  2001/05/31 19:24:47  barbera
+Default values of SPD detector and chip thickness set to 200 microns as defined by the Technical Board
+
 Revision 1.27  2001/05/30 16:15:47  fca
 Correct comparison wiht AliGeant3::Class() introduced. Thanks to I.Hrivnacova
 
@@ -384,13 +387,13 @@ void AliITSvPPRsymm::CreateGeometry(){
   Float_t di1d3[3], di20a[3], di1d2[3];                      // for layer 2  
   Float_t di108[3], di104[3];                                // for both layers  
 
-  Float_t ddet1=200.;     // total detector thickness on layer 1 (micron)
-  Float_t dchip1=200.;    // total chip thickness on layer 1 (micron)
+  Float_t ddet1=300.;     // total detector thickness on layer 1 (micron)
+  Float_t dchip1=300.;    // total chip thickness on layer 1 (micron)
   
-  Float_t ddet2=200.;     // total detector thickness on layer 2 (micron)                         
-  Float_t dchip2=200.;    // total chip thickness on layer 2 (micron)
+  Float_t ddet2=300.;     // total detector thickness on layer 2 (micron)                         
+  Float_t dchip2=300.;    // total chip thickness on layer 2 (micron)
   
-  Float_t dbus=200.;      // total bus thickness on both layers (micron)
+  Float_t dbus=300.;      // total bus thickness on both layers (micron)
 
   ddet1 = GetThicknessDet1();
   ddet2 = GetThicknessDet2();
@@ -399,26 +402,26 @@ void AliITSvPPRsymm::CreateGeometry(){
 
   if(ddet1 < 100. || ddet1 > 300.) {
      cout << "ITS - WARNING: the detector thickness for layer 1 is outside the range of [100,300] microns."
-         " The default value of 200 microns will be used." << endl;
-         ddet1=200.;
+         " The default value of 300 microns will be used." << endl;
+         ddet1=300.;
   }
   
   if(ddet2 < 100. || ddet2 > 300.) {
      cout << "ITS - WARNING: the detector thickness for layer 2 is outside the range of [100,300] microns."
-         " The default value of 200 microns will be used." << endl;
-         ddet2=200.;
+         " The default value of 300 microns will be used." << endl;
+         ddet2=300.;
   }
   
-  if(dchip1 < 150. || dchip1 > 300.) {
-     cout << "ITS - WARNING: the chip thickness for layer 1 is outside the range of [150,300] microns."
-         " The default value of 200 microns will be used." << endl;
-         dchip1=200.;
+  if(dchip1 < 100. || dchip1 > 300.) {
+     cout << "ITS - WARNING: the chip thickness for layer 1 is outside the range of [100,300] microns."
+         " The default value of 300 microns will be used." << endl;
+         dchip1=300.;
   }
   
-  if(dchip2 < 150. || dchip2 > 300.) {
-     cout << "ITS - WARNING: the chip thickness for layer 2 is outside the range of [150,300] microns."
-         " The default value of 200 microns will be used." << endl;
-         dchip2=200.;
+  if(dchip2 < 100. || dchip2 > 300.) {
+     cout << "ITS - WARNING: the chip thickness for layer 2 is outside the range of [100,300] microns."
+         " The default value of 300 microns will be used." << endl;
+         dchip2=300.;
   }      
 
   Int_t rails = 1;       // flag for rails (1 --> rails in; 0 --> rails out)
index 87980ee51befd63f23c3cf5661e8e35a8042bffe..b5e301d228e06689ede64cfdc76177a079da69cc 100644 (file)
@@ -42,16 +42,16 @@ class AliITSvPPRsymm : public AliITS {
                             fEuclidGeometry=f;fEuclidOut = kTRUE;}
     virtual void   SetMinorVersion(Int_t v=22){ // Choose between existing minor versions
        fMinorVersion = v;}
-    virtual void   SetThicknessDet1(Float_t v=200.){ 
+    virtual void   SetThicknessDet1(Float_t v=300.){ 
         // Set detector thickness in layer 1
         fDet1 = v;}
-    virtual void   SetThicknessDet2(Float_t v=200.){ 
+    virtual void   SetThicknessDet2(Float_t v=300.){ 
         // Set detector thickness in layer 2
         fDet2 = v;}
-    virtual void   SetThicknessChip1(Float_t v=200.){ 
+    virtual void   SetThicknessChip1(Float_t v=300.){ 
         // Set chip thickness in layer 1
         fChip1 = v;}            
-    virtual void   SetThicknessChip2(Float_t v=200.){ 
+    virtual void   SetThicknessChip2(Float_t v=300.){ 
         // Set chip thickness in layer 2
         fChip2 = v;}
     virtual void   SetRails(Int_t v=1){