Skip to content

Commit

Permalink
Code check
Browse files Browse the repository at this point in the history
  • Loading branch information
Sunanda committed Apr 6, 2022
1 parent 2cdb449 commit af9e22b
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 23 deletions.
4 changes: 1 addition & 3 deletions SimG4Core/GFlash/TB/TreeMatrixCalib.cc
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,7 @@ TreeMatrixCalib::TreeMatrixCalib(const char*) {
myTree_->Branch("crystal", &myCrystal, "crystal[49]/I");
}

void TreeMatrixCalib::store() {
myTree_->Fill();
}
void TreeMatrixCalib::store() { myTree_->Fill(); }

void TreeMatrixCalib::fillInfo(int run,
int eve,
Expand Down
40 changes: 20 additions & 20 deletions SimG4Core/GFlash/TB/TreeProducerCalibSimul.cc
Original file line number Diff line number Diff line change
Expand Up @@ -265,26 +265,26 @@ void TreeProducerCalibSimul::analyze(const edm::Event& iEvent, const edm::EventS

// filling the tree
myTree_->fillInfo(run,
event,
mySupCry,
maxEneCry,
nomXtalInBeam,
nextXtalInBeam,
mySupEta,
mySupPhi,
tbm,
x,
y,
Xcal,
Ycal,
sx,
sy,
qx,
qy,
tdcOffset,
allMatrix,
energy,
crystal);
event,
mySupCry,
maxEneCry,
nomXtalInBeam,
nextXtalInBeam,
mySupEta,
mySupPhi,
tbm,
x,
y,
Xcal,
Ycal,
sx,
sy,
qx,
qy,
tdcOffset,
allMatrix,
energy,
crystal);
myTree_->store();
}

Expand Down

0 comments on commit af9e22b

Please sign in to comment.