/////////////////////////////////////////////////////////////////////////////// // // // Magnetic Dipole // // This class contains the description of the base class for the // // magnetic dipole // // // //Begin_Html /*

The responsible person for this module is Andreas Morsch.

*/
//End_Html
//                                                                           //
//                                                                           //
///////////////////////////////////////////////////////////////////////////////

#include "AliDIPO.h"
#include "AliRun.h"
 
ClassImp(AliDIPO)
 
//_____________________________________________________________________________
AliDIPO::AliDIPO()
{
  //
  // Default constructor for the Dipole Magnet
  //
}
 
//_____________________________________________________________________________
AliDIPO::AliDIPO(const char *name, const char *title)
  : AliModule(name,title)
{
  //
  // Standard constructor for the Magnetic Dipole
  //
  SetMarkerColor(7);
  SetMarkerStyle(2);
  SetMarkerSize(0.4);
}
 
//_____________________________________________________________________________
void AliDIPO::Init()
{
  //
  // Initialise Magnetic Dipole after it has been built
  //
  Int_t i;
  //
  printf("\n");
  for(i=0;i<35;i++) printf("*");
  printf(" DIPO_INIT ");
  for(i=0;i<35;i++) printf("*");
  printf("\n");
  //
  // Here the ABSO initialisation code (if any!)
  for(i=0;i<80;i++) printf("*");
  printf("\n");
}