ANASEN_analysis/ANASEN_model.C

111 lines
4.7 KiB
C++
Raw Normal View History

2024-01-29 21:55:10 -05:00
#include "TGeoManager.h"
#include "TGeoVolume.h"
#include "TGeoBBox.h"
#include "TCanvas.h"
#include "TPolyMarker3D.h"
#include "TPolyLine3D.h"
#include "TMath.h"
2024-01-30 12:37:39 -05:00
void ANASEN_model(int anodeID1 = -1, int anodeID2 = -1, int cathodeID1 = -1, int cathodeID2 = -1 ) {
2024-01-29 21:55:10 -05:00
// Create ROOT manager and master volume
2024-01-30 12:37:39 -05:00
TGeoManager *geom = new TGeoManager("Detector", "ANASEN");
2024-01-29 21:55:10 -05:00
//--- define some materials
TGeoMaterial *matVacuum = new TGeoMaterial("Vacuum", 0,0,0);
TGeoMaterial *matAl = new TGeoMaterial("Al", 26.98,13,2.7);
//--- define some media
TGeoMedium *Vacuum = new TGeoMedium("Vacuum",1, matVacuum);
TGeoMedium *Al = new TGeoMedium("Root Material",2, matAl);
//--- make the top container volume
2024-01-30 12:37:39 -05:00
Double_t worldx = 200.; //mm
Double_t worldy = 200.; //mm
Double_t worldz = 200.; //mm
2024-01-29 21:55:10 -05:00
TGeoVolume *worldBox = geom->MakeBox("ROOT", Vacuum, worldx, worldy, worldz);
geom->SetTopVolume(worldBox);
2024-01-30 12:37:39 -05:00
//--- making axis
2024-01-29 21:55:10 -05:00
TGeoVolume *axisX = geom->MakeTube("axisX", Al, 0, 0.1, 5.);
axisX->SetLineColor(1);
worldBox->AddNode(axisX, 1, new TGeoCombiTrans(5, 0, 0., new TGeoRotation("rotA", 90., 90., 0.)));
TGeoVolume *axisY = geom->MakeTube("axisY", Al, 0, 0.1, 5.);
axisY->SetLineColor(1);
worldBox->AddNode(axisY, 1, new TGeoCombiTrans(0, 5, 0., new TGeoRotation("rotB", 0., 90., 0.)));
TGeoVolume *axisZ = geom->MakeTube("axisZ", Al, 0, 0.1, 5.);
axisZ->SetLineColor(1);
worldBox->AddNode(axisZ, 1, new TGeoTranslation(0, 0, 5));
2024-01-30 12:37:39 -05:00
//--- making ANASEN
2024-01-29 21:55:10 -05:00
const int nWire = 24;
2024-01-30 12:37:39 -05:00
const int wireShift = 3;
const int zLen = 300; //mm
const int radiusA = 38;
const int radiusC = 43;
//.......... convert to wire center dimensions
double dAngle = wireShift * TMath::TwoPi() / nWire;
double radiusAnew = radiusA * TMath::Cos( dAngle / 2.);
double wireALength = TMath::Sqrt( zLen*zLen + TMath::Power(2* radiusA * TMath::Sin(dAngle/2),2) );
double wireATheta = TMath::ATan2( 2* radiusA * TMath::Sin( dAngle / 2.), zLen);
// printf(" dAngle : %f\n", dAngle);
// printf(" newRadius : %f\n", radiusAnew);
// printf("wireLength : %f\n", wireALength);
// printf("wire Theta : %f\n", wireATheta);
TGeoVolume *pcA = geom->MakeTube("tub1", Al, 0, 0.01, wireALength/2);
pcA->SetLineColor(4);
2024-01-29 21:55:10 -05:00
for( int i = 0; i < nWire; i++){
2024-01-30 12:37:39 -05:00
if( i < anodeID1 || i > anodeID2) continue;
worldBox->AddNode(pcA, i+1, new TGeoCombiTrans( radiusAnew * TMath::Cos( TMath::TwoPi() / nWire *i + dAngle / 2),
radiusAnew * TMath::Sin( TMath::TwoPi() / nWire *i + dAngle / 2),
2024-01-29 21:55:10 -05:00
0,
2024-01-30 12:37:39 -05:00
new TGeoRotation("rot1", 360/ nWire * (i + wireShift/2.), wireATheta * 180/ TMath::Pi(), 0.)));
2024-01-29 21:55:10 -05:00
}
2024-01-30 12:37:39 -05:00
double radiusCnew = radiusC * TMath::Cos( dAngle / 2.);
double wireCLength = TMath::Sqrt( zLen*zLen + TMath::Power(2* radiusC * TMath::Sin(dAngle/2),2) );
double wireCTheta = TMath::ATan2( 2* radiusC * TMath::Sin( dAngle / 2.), zLen);
2024-01-29 21:55:10 -05:00
2024-01-30 12:37:39 -05:00
TGeoVolume *pcC = geom->MakeTube("tub2", Al, 0, 0.01, wireCLength/2);
2024-01-29 21:55:10 -05:00
pcC->SetLineColor(6);
for( int i = 0; i < nWire; i++){
2024-01-30 12:37:39 -05:00
if( i < cathodeID1 || i > cathodeID2) continue;
worldBox->AddNode(pcC, i+1, new TGeoCombiTrans( radiusCnew * TMath::Cos( TMath::TwoPi() / nWire *i - dAngle/2),
radiusCnew * TMath::Sin( TMath::TwoPi() / nWire *i - dAngle/2),
2024-01-29 21:55:10 -05:00
0,
2024-01-30 12:37:39 -05:00
new TGeoRotation("rot1", 360/ nWire * (i - wireShift/2.), -wireCTheta * 180/ TMath::Pi(), 0.)));
2024-01-29 21:55:10 -05:00
}
const int nSX3 = 12;
2024-01-30 12:37:39 -05:00
const int sx3Radius = 88;
const int sx3Width = 40;
const int sx3Length = 75;
const int sx3Gap = 5;
TGeoVolume * sx3 = geom->MakeBox("box", Al, 0.1, sx3Width/2, sx3Length/2);
sx3->SetLineColor(kGreen+3);
2024-01-29 21:55:10 -05:00
for( int i = 0; i < nSX3; i++){
worldBox->AddNode(sx3, 2*i+1., new TGeoCombiTrans( sx3Radius * TMath::Cos( TMath::TwoPi() / nSX3 *i),
sx3Radius * TMath::Sin( TMath::TwoPi() / nSX3 *i),
2024-01-30 12:37:39 -05:00
sx3Length/2+sx3Gap,
2024-01-29 21:55:10 -05:00
new TGeoRotation("rot1", 360/nSX3 * (i), 0., 0.)));
worldBox->AddNode(sx3, 2*i+2., new TGeoCombiTrans( sx3Radius* TMath::Cos( TMath::TwoPi() / nSX3 *i),
sx3Radius * TMath::Sin( TMath::TwoPi() / nSX3 *i),
2024-01-30 12:37:39 -05:00
-sx3Length/2-sx3Gap,
2024-01-29 21:55:10 -05:00
new TGeoRotation("rot1", 360/nSX3 * (i), 0., 0.)));
}
geom->CloseGeometry();
geom->SetVisLevel(4);
worldBox->Draw("ogle");
}