forked from alisw/AliRoot
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This commit was manufactured by cvs2svn to create tag 'v4-07-02'.
- Loading branch information
(no author)
committed
Oct 10, 2007
1 parent
9fae464
commit 907dfe6
Showing
121 changed files
with
1,440 additions
and
2,933 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
void UpdateCDBVertexDiamond(Double_t xmed = 0., Double_t ymed = 0., Double_t sigx = 0.005, Double_t sigy = 0.005, Double_t sigz = 5.3) { | ||
void UpdateCDBVertexDiamond() { | ||
// produce the trigger descriptorwith the current AliRoot and store it in the | ||
// CDB | ||
|
||
|
@@ -26,26 +26,17 @@ void UpdateCDBVertexDiamond(Double_t xmed = 0., Double_t ymed = 0., Double_t sig | |
alirootv="HEAD"; | ||
}else{ | ||
alirootv = buf; | ||
metadata->SetResponsible("[email protected]"); | ||
metadata->SetComment("Default mean vertex position"); | ||
metadata->SetResponsible("Tapan Nayak"); | ||
metadata->SetAliRootVersion(alirootv); | ||
metadata->SetComment(Form("Default trigger description produced with root version %s and AliRoot version %s",rootv,alirootv)); | ||
} | ||
|
||
Printf("Storing in CDB the default trigger description produced with root version %s and AliRoot version %s",rootv,alirootv); | ||
|
||
Double_t resolx=35./10000.; | ||
Double_t resoly=35./10000.; | ||
Double_t sigma[3],position[3]; | ||
position[0]=xmed; | ||
position[1]=ymed; | ||
position[2]=0.; | ||
sigma[0]=TMath::Sqrt(sigx*sigx+resolx*resolx); | ||
sigma[1]=TMath::Sqrt(sigy*sigy+resoly*resoly); | ||
sigma[2]=sigz; | ||
|
||
AliESDVertex *vertex = new AliESDVertex(position,sigma,"vtxmean"); | ||
vertex->PrintStatus(); | ||
Double_t position[3] = {0.0,0.0,0.0}; | ||
Double_t sigma[3] = {0.0,0.0,0.0}; | ||
AliESDVertex *vertex = new AliESDVertex(position,sigma,"Default"); | ||
vertex->Print(); | ||
|
||
man->Put(vertex,id,metadata); | ||
} | ||
|
Oops, something went wrong.