Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.43 KB | None | 0 0
  1. Adding the following line in IDJet.h
  2.  
  3. bool DeepCSVCvsLtag() const;
  4.  
  5. with the following function
  6.  
  7. bool IDJet::DeepCSVCvsLtag() const {
  8.     int cvsltag = ( (DeepCSVProbC() != -1) ? (DeepCSVProbC())/(DeepCSVProbC() + DeepCSVProbUDSG()) > 0.05 : -1 );
  9.     cout << "ProbC: " << DeepCSVProbC() << endl;
  10.     return cvsltag;
  11. }
  12.  
  13. has the output like
  14.  
  15. ProbC: 0.397909
  16. Deep: 1
  17. ProbC: 0.0883961
  18. Deep: 1
  19. ProbC: 0.397909
  20. Deep: 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement