]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Misalignment classes are added
authorbasanta <basanta@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 22 May 2009 09:25:37 +0000 (09:25 +0000)
committerbasanta <basanta@f7af4fe6-9843-0410-8265-dc069ae4e863>
Fri, 22 May 2009 09:25:37 +0000 (09:25 +0000)
PMD/AliPMDMisAligner.cxx [new file with mode: 0644]
PMD/AliPMDMisAligner.h [new file with mode: 0644]
PMD/CMake_libPMDbase.txt
PMD/MakePMDAlignmentObjs.C [new file with mode: 0644]
PMD/PMDbaseLinkDef.h
PMD/libPMDbase.pkg

diff --git a/PMD/AliPMDMisAligner.cxx b/PMD/AliPMDMisAligner.cxx
new file mode 100644 (file)
index 0000000..62de4cd
--- /dev/null
@@ -0,0 +1,171 @@
+/**************************************************************************
+ * Copyright(c) 2007-2010, 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.                  *
+ **************************************************************************/
+
+//========================================================================
+//
+// This class generates misalignment for PMD. In particular it defines
+// the misalignment in the three canonical scenarios: "ideal", "residual"
+// and "full".
+// It is meant to be run standalone or from the steering macro
+// $ALICE_ROOT/macros/MakeAlignmentObjs.C
+// looping on the detectors.
+//
+// Macro to randomly displace the 4 sectors of the PMD
+// in each plane. Each sector (to be misaligned) 
+// of PMD houses the following :
+// (a) 6 modules of preshower plane
+// (b) 6 modules of veto plane
+// (c) The FEE boards on back plane of each module
+// (d) 6 modules of convertor plates
+// The clustering is done module-wise
+// The actual amount displacement will be provided
+// by the survey data and has to be converted into
+// displacement in x,y,z,theta, phi and psi 
+
+
+// Now specify the path of the module to be misaligned
+// as followed in the PMD geant
+
+//   _____________
+//  |    |        |
+//  | 1  |   3    |
+//  |    |________|
+//  |____|___|    |
+//  |        | 2  |
+//  |   4    |    |
+//  |________|____|
+  
+// Misalignment Matrix is expected to be
+// same for sectors 1 and 4 
+// and for the sectors 2 and 3
+// As these will be mounted on the same
+// Steel plate 
+//========================================================================
+
+#include "AliPMDMisAligner.h"
+#include "AliGeomManager.h"
+#include "TClonesArray.h"
+#include "TRandom.h"
+#include "AliAlignObjParams.h"
+#include "AliLog.h"
+
+ClassImp(AliPMDMisAligner)
+
+    //_______________________________________________________________________________________
+AliPMDMisAligner::AliPMDMisAligner() : AliMisAligner()
+{
+    //
+    // dummy constructor
+    //
+}
+
+//_______________________________________________________________________________________
+TClonesArray* AliPMDMisAligner::MakeAlObjsArray() {
+    // builds and returns the array of alignment objects
+    // according to the spcified misalignment scenario
+    // ("ideal", "residual" or "full").
+    //
+    TClonesArray *array = new TClonesArray("AliAlignObjParams",4);
+    TClonesArray &alobj = *array;
+
+    Double_t max_trans=0.1; // maximun shifts in X,Y,Z  in centimeters
+    Double_t max_rot=0.1;   // maximum shifts in angles in degrees
+
+    const char *Sector1="PMD/Sector1"; 
+    const char *Sector2="PMD/Sector2"; 
+    const char *Sector3="PMD/Sector3"; 
+    const char *Sector4="PMD/Sector4"; 
+
+    //Sectors 1 and 4
+    Double_t dx14, dy14, dz14;          // Misalignment in X,Y and Z
+    Double_t dpsi14, dtheta14, dphi14; //  Angular displacements
+    //Sectors 2 and 3
+    Double_t dx23, dy23, dz23;          // Misalignment in X,Y and Z
+    Double_t dpsi23, dtheta23, dphi23; //  Angular displacements
+
+    UShort_t iIndex=0; // PMD is not indexed
+    AliGeomManager::ELayerID iLayer = AliGeomManager::kInvalidLayer;
+    UShort_t volid = AliGeomManager::LayerToVolUID(iLayer,iIndex);
+  
+    gRandom->SetSeed(4357);
+  
+    if(TString(GetMisalType())=="ideal")
+    {
+
+       Double_t dx=0., dy=0., dz=0., dpsi=0., dtheta=0., dphi=0.;
+
+       for(Int_t i=0; i<4; i++){
+           TString snSector(Form("PMD/Sector%d",i+1));
+           new(alobj[i]) AliAlignObjParams(snSector.Data(), volid, dx, dy, dz, dpsi, dtheta, dphi, kTRUE);
+       }
+
+    }else if(TString(GetMisalType())=="residual" || TString(GetMisalType())=="full"){
+       if(!AliGeomManager::GetGeometry())
+       {
+           AliError("No geometry loaded into AliGeomManager! Returning null pointer!");
+           return 0;
+       }
+
+       // For sectors 1 and 4
+       // Translation displacement
+       dx14     = (gRandom->Uniform()-0.5)*max_trans;
+       dy14     = (gRandom->Uniform()-0.5)*max_trans;
+       dz14     = (gRandom->Uniform()-0.5)*max_trans;
+       //Rotation angles
+       dpsi14   = (gRandom->Uniform()-0.5)*max_rot;
+       dtheta14 = (gRandom->Uniform()-0.5)*max_rot;
+       dphi14   = (gRandom->Uniform()-0.5)*max_rot;
+
+       // For sectors 2 and 3
+       // Translation displacement
+       dx23     = (gRandom->Uniform()-0.5)*max_trans;
+       dy23     = (gRandom->Uniform()-0.5)*max_trans;
+       dz23     = (gRandom->Uniform()-0.5)*max_trans;
+       //Rotation angles
+       dpsi23   = (gRandom->Uniform()-0.5)*max_rot;
+       dtheta23 = (gRandom->Uniform()-0.5)*max_rot;
+       dphi23   = (gRandom->Uniform()-0.5)*max_rot;
+
+       new(alobj[0]) AliAlignObjParams(Sector1, volid, dx14, dy14, dz14, dpsi14, dtheta14, dphi14, kFALSE);
+       new(alobj[1]) AliAlignObjParams(Sector2, volid, dx14, dy14, dz14, dpsi14, dtheta14, dphi14, kFALSE);
+       new(alobj[2]) AliAlignObjParams(Sector3, volid, dx23, dy23, dz23, dpsi23, dtheta23, dphi23, kFALSE);
+       new(alobj[3]) AliAlignObjParams(Sector4, volid, dx23, dy23, dz23, dpsi23, dtheta23, dphi23, kFALSE);
+
+    }else{
+       AliError(Form("\"%s\" is not a valid identifier for misalignment types. Exiting ...",GetMisalType()));
+       return 0;
+    }
+
+    return array;
+}
+
+//_______________________________________________________________________________________
+AliCDBMetaData* AliPMDMisAligner::GetCDBMetaData() const {
+    // Returns the comment and responsible for the
+    // AliCDBMetaData to be associated with the OCDB entry
+    // containing the PMD array of misalignment objects
+    //
+    AliCDBMetaData* md = new AliCDBMetaData();
+    md->SetResponsible("");
+
+    if(TString(GetMisalType())=="ideal")
+       md->SetComment("Alignment objects for PMD ideal misalignment");
+    if(TString(GetMisalType())=="residual")
+       md->SetComment("Alignment objects for PMD residual misalignment");
+    if(TString(GetMisalType())=="full")
+       md->SetComment("Alignment objects for PMD full misalignment");
+
+    return md;
+}
diff --git a/PMD/AliPMDMisAligner.h b/PMD/AliPMDMisAligner.h
new file mode 100644 (file)
index 0000000..c7bf7a5
--- /dev/null
@@ -0,0 +1,31 @@
+#ifndef ALIPMDMISALIGNER_H
+#define ALIPMDMISALIGNER_H
+
+#include "AliMisAligner.h"
+
+// Class building the alignment objects for PMD in the three
+// canonical scenarios "ideal", "residual" and "full".
+// It derives from AliMisAligner, thus providing the methods
+// MakeAlObjsArray (builds and returns the array of alignment objects)
+// and GetCDBMetaData (returns the metadata for the OCDB entry)
+//
+
+class TString;
+class TNamed;
+class TClonesArray;
+class AliCDBManager;
+class AliCDBMetaData;
+
+class AliPMDMisAligner : public AliMisAligner {
+
+    public:
+       AliPMDMisAligner();
+       TClonesArray* MakeAlObjsArray();
+       AliCDBMetaData* GetCDBMetaData() const;
+
+    private:
+       ClassDef(AliPMDMisAligner,0);
+};
+
+#endif
+
index 131d1e327128d2ae9a950e6667372b51f62ed610..59f741d892a5a690fdfd91a05fcfee62e0d2eece 100644 (file)
@@ -1,11 +1,11 @@
 # -*- mode: cmake -*-
 
 set(SRCS
-AliPMDLoader.cxx AliPMDdigit.cxx AliPMDBlockHeader.cxx AliPMDDspHeader.cxx AliPMDPatchBusHeader.cxx AliPMDddldata.cxx AliPMDRawStream.cxx AliPMDCalibData.cxx AliPMDCalibrator.cxx AliPMDPreprocessor.cxx AliPMDRawToSDigits.cxx AliPMDPedestal.cxx AliPMDsdigit.cxx AliPMDQAChecker.cxx
+AliPMDLoader.cxx AliPMDdigit.cxx AliPMDBlockHeader.cxx AliPMDDspHeader.cxx AliPMDPatchBusHeader.cxx AliPMDddldata.cxx AliPMDRawStream.cxx AliPMDCalibData.cxx AliPMDCalibrator.cxx AliPMDPreprocessor.cxx AliPMDRawToSDigits.cxx AliPMDPedestal.cxx AliPMDsdigit.cxx AliPMDQAChecker.cxx AliPMDMisAligner.cxx
 )
 
 # fill list of header files from list of source files
 # by exchanging the file extension
 String(REPLACE ".cxx" ".h" HDRS "${SRCS}")
 
-AddLibrary(PMDbase "${SRCS}" "${HDRS}")
\ No newline at end of file
+AddLibrary(PMDbase "${SRCS}" "${HDRS}")
diff --git a/PMD/MakePMDAlignmentObjs.C b/PMD/MakePMDAlignmentObjs.C
new file mode 100644 (file)
index 0000000..e13612e
--- /dev/null
@@ -0,0 +1,13 @@
+
+void MakePMDAlignmentObjs()
+{
+  // To create PMD alignment objects using the class AliPMDMisAligner
+  AliGeomManager::LoadGeometry("geometry.root");
+  AliPMDMisAligner *mA = new AliPMDMisAligner();
+  mA->SetMisalType("residual"); // or "ideal" or "full"
+  TClonesArray* array = mA->MakeAlObjsArray();
+  array->Print();
+
+
+  return;
+}
index 608c9015350e822072e8d39369bc4b31bd15b2b4..709d43a94a4c5484cf000a2d011e18536cf16e4d 100644 (file)
@@ -22,4 +22,5 @@
 #pragma link C++ class  AliPMDPedestal+;
 #pragma link C++ class  AliPMDsdigit+;
 #pragma link C++ class  AliPMDQAChecker+;
+#pragma link C++ class  AliPMDMisAligner+;
 #endif
index 757a4f3093c0f2a92ae5e36456c160f9ac37a79d..a13f955314401db1a6bd0ee3f76b455f5a13c768 100644 (file)
@@ -1,7 +1,7 @@
 #-*- Mode: Makefile -*-
 # $Id$
 
-SRCS:= AliPMDLoader.cxx AliPMDdigit.cxx AliPMDBlockHeader.cxx AliPMDDspHeader.cxx AliPMDPatchBusHeader.cxx AliPMDddldata.cxx AliPMDRawStream.cxx AliPMDCalibData.cxx AliPMDCalibrator.cxx AliPMDPreprocessor.cxx AliPMDRawToSDigits.cxx AliPMDPedestal.cxx AliPMDsdigit.cxx AliPMDQAChecker.cxx
+SRCS:= AliPMDLoader.cxx AliPMDdigit.cxx AliPMDBlockHeader.cxx AliPMDDspHeader.cxx AliPMDPatchBusHeader.cxx AliPMDddldata.cxx AliPMDRawStream.cxx AliPMDCalibData.cxx AliPMDCalibrator.cxx AliPMDPreprocessor.cxx AliPMDRawToSDigits.cxx AliPMDPedestal.cxx AliPMDsdigit.cxx AliPMDQAChecker.cxx AliPMDMisAligner.cxx
 
 HDRS:= $(SRCS:.cxx=.h)