This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
username: '[email protected]' | |
password: '' | |
album_id: '' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const double kJPi = TMath::Pi(); | |
const double kJTwoPi = kJPi*2; | |
void dijetcor(){ | |
TH1D *hCor = new TH1D ( "hCor", "hCor", 300, -1/3.0, ( 2-1/3.0 ) ); | |
for( int ievt=0;ievt<1000;ievt++ ){ | |
double phi1 = gRandom->Uniform( kJTwoPi ); | |
//double phi2 = phi1 + kJPi ; | |
double phi2 = gRandom->Gaus( phi1 + kJPi, 0.3 ) ; | |
double dphi1 = 0.1*kJPi; |
NewerOlder