GSI Forum
GSI Helmholtzzentrum für Schwerionenforschung

Home » PANDA » PandaRoot » Bugs, Fixes, Releases » box generator  () 1 Vote
box generator [message #4264] Wed, 16 May 2007 17:24 Go to next message
asanchez is currently offline  asanchez
Messages: 350
Registered: March 2006
first-grade participant
From: *gsi.de
hi I want to use the box generator
to simulate one uniforme momentum distribution
my detector is at a Z-distance -76.5 cm
from the center of Panda.

I do the following selection


boxGen->SetPRange(.1,1.); // GeV/c
// boxGen->SetPtRange(1.,1.); // GeV/c
boxGen->SetPhiRange(0., 360.); // Azimuth angle range [degree]
boxGen->SetThetaRange(0., 180.); // Polar angle in lab system range [degree]
boxGen->SetXYZ(0.,10., -760.); // vertex coordinates [mm]
primGen->AddGenerator(boxGen);


but I get any hit in the detector.
is it something wrong with
the parameters.
thanks a lot
alicia
Re: box generator [message #4272 is a reply to message #4264] Mon, 21 May 2007 08:25 Go to previous messageGo to next message
StefanoSpataro is currently offline  StefanoSpataro
Messages: 2736
Registered: June 2005
Location: Torino
first-grade participant

From: *dip.t-dialin.net
Hi Alicia,
I have the feeling that the position should be expressed in cm, and not in mm (yes I know, even in my Frascati presentation it was written wrong).
Try to take out one order of magnitude and see if it will work after.
Re: box generator [message #4274 is a reply to message #4272] Mon, 21 May 2007 09:54 Go to previous messageGo to next message
Pablo Genova is currently offline  Pablo Genova
Messages: 32
Registered: May 2007
continuous participant
From: *PV.INFN.IT
Hi Stefano and Alicia,

one warning on the box generator: is it really uniform in theta? As Kasha and Felice Iazzi noticed the p components are generated uniformly in phi and in theta,
not uniformly in phi and cos(theta).

Do you agree that there is something strange?

ciao, Pablo

The code is the following from CmbBoxGenerator.cxx:

// Generate particles
for (Int_t k = 0; k < fMult; k++) {
phi = gRandom->Uniform(fPhiMin,fPhiMax) * TMath::DegToRad();

if (fPRangeIsSet ) pabs = gRandom->Uniform(fPMin,fPMax);
else if (fPtRangeIsSet) pt = gRandom->Uniform(fPtMin,fPtMax);

if (fThetaRangeIsSet) {
theta = gRandom->Uniform(fThetaMin,fThetaMax) * TMath::DegToRad();
}
else if (fEtaRangeIsSet) {
eta = gRandom->Uniform(fEtaMin,fEtaMax);
theta = 2*TMath::ATan(TMath::Exp(-eta));
}
else if (fYRangeIsSet) {
y = gRandom->Uniform(fYMin,fYMax);
mt = TMath::Sqrt(fPDGMass*fPDGMass + pt*pt);
pz = mt * TMath::SinH(y);
}

if (fThetaRangeIsSet || fEtaRangeIsSet) {
if (fPRangeIsSet ) {
pz = pabs*TMath::Cos(theta);
pt = pabs*TMath::Sin(theta);
}
else if (fPtRangeIsSet)
pz = pt/TMath::Tan(theta);
}

px = pt*TMath::Cos(phi);
py = pt*TMath::Sin(phi);

if (fBoxVtxIsSet) {
fX = gRandom->Uniform(fX1,fX2);
fY = gRandom->Uniform(fY1,fY2);
}
Re: box generator [message #4275 is a reply to message #4274] Mon, 21 May 2007 10:05 Go to previous messageGo to next message
StefanoSpataro is currently offline  StefanoSpataro
Messages: 2736
Registered: June 2005
Location: Torino
first-grade participant

From: *physik.uni-giessen.de
Hello,
the aim of the "uniform theta distribution" function is to have a uniform distribution in theta (which means same number of counts per each theta bin), not in cos(theta).

I mean, the uniform distribution in cos(theta) is another different thing, that probably can be added under request if needed.

So I think there is nothing strange.
Re: box generator [message #4276 is a reply to message #4275] Mon, 21 May 2007 10:30 Go to previous messageGo to next message
Pablo Genova is currently offline  Pablo Genova
Messages: 32
Registered: May 2007
continuous participant
From: *PV.INFN.IT
Hi Stefano,

so we misunderstood the aim of the box generator.

The box generator is not a generator which generates uniformly on the solid angle, but it generates uniformly on theta, phi angles.

I mean, if one wants to generate isotropically in 3D with a fixed total momentum, or fixed transverse momentum, which is a common request, one has to generate uniformly on cos\theta and \phi and the cbmbox generator is NOT correct for this.

I thought it were!

I think it is really useful to have a 3d uniform generator not to be confused with the present box generator.

I do not understand completely the need for uniform generation on theta and phi variables, but this is not important.

ciao, Pablo
Re: box generator [message #4278 is a reply to message #4276] Mon, 21 May 2007 16:32 Go to previous messageGo to next message
StefanoSpataro is currently offline  StefanoSpataro
Messages: 2736
Registered: June 2005
Location: Torino
first-grade participant

From: *physik.uni-giessen.de
Well,
it could be possible to add a function SetCosThetaRange() (or something similar), in order to have what you ask without adding a new generator.
Re: box generator [message #4283 is a reply to message #4278] Tue, 22 May 2007 09:14 Go to previous messageGo to next message
Pablo Genova is currently offline  Pablo Genova
Messages: 32
Registered: May 2007
continuous participant
From: *PV.INFN.IT
Yes for me it's OK.

It could be useful, in order to prevent errors, to explain in the comments that, for uniform generation on the solid angle, one has to call setphirange and setcosthetarange and not settheta.

Maybe also a function setuniform() which automatically sets the whole (phi, theta) range and generates uniformly on the solid angle could be useful.

ciao, Pablo
Re: box generator [message #4292 is a reply to message #4275] Tue, 22 May 2007 13:01 Go to previous messageGo to next message
Katarzyna Szymanska is currently offline  Katarzyna Szymanska
Messages: 1
Registered: May 2007
Location: Torino
occasional visitor
From: *polito.it
Hi Stefano,

Few remarks concerning the direction generation:

1) the possible distributions of the (physically meaningful) directions are infinite: the uniform direction is the simplest, corresponds to the s-wave in the two-body kinematics and is mostly used to evaluate the relative acceptances and efficiencies at different solid angles

2) therefore, we think that the collaboration needs such a distribution which is generated by -1 < cos(theta) < +1 and 0 < phi < 360, both uniform.

3) neverthless, if someone uses the "uniform theta" distribution, which should peak the directions forward, one has the remember that the relative and absolute acceptances, efficiencies must be suitable normalized.

4) in any case, it will be useful to comment clearly the "uniform theta" distribution and its physical meaning in term of directions.

Regards,

Felice and Kasia
Re: box generator [message #4324 is a reply to message #4292] Thu, 24 May 2007 19:43 Go to previous message
Pablo Genova is currently offline  Pablo Genova
Messages: 32
Registered: May 2007
continuous participant
From: *PV.INFN.IT
Hi Stefano and generators' people,

triggered also by Katarzyna and Felice, I checked the two generators, the former CbmBoxGenerator and the PndBoxGenerator with option SetCosTheta(), which Stefano wrote recently.

As they suggested, I used a detector consisting of a sphere, everything in vacuum.

You can see the results in the attached plots

1. box_NON_uniform.jpg : with uniform theta.
2. box_uniform.jpg : with uniform cos theta.

As expected the first plot shows enhanced momenta in region x=0 & y=0, i. e. along the zed axis , and only using the SetCosTheta option you get the truly uniform generation.

So everything is OK, but I would strongly suggest to put a comment a like: "if you want to generate uniformly in the solid angle use the SetCosTheta() function" or even call that function
SetUniform3D() , to avoid errors or misunderstandings.

Maybe even in the macros it is better to default to uniform distributions, with suitable comment to clear this to the user.

(I went into the mistake of supposing uniform what uniform was not!)

ciao, Pablo

ps: this forum is wonderful!

index.php?t=getfile&id=3566&private=0

index.php?t=getfile&id=3567&private=0

Previous Topic: Addressing Hits by Array-index
Next Topic: decay off in geant4
Goto Forum:
  


Current Time: Wed Apr 24 03:53:58 CEST 2024

Total time taken to generate the page: 0.00937 seconds