/usr/include/root/TMVA/Version.h is in libroot-tmva-dev 5.34.30-0ubuntu8.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 | // @(#)root/tmva $Id$
// Author: Andreas Hoecker, Peter Speckmayer, Joerg Stelzer, Jan Therhaag, Eckhard von Toerne, Helge Voss
/**********************************************************************************
* Project: TMVA - a Root-integrated toolkit for multivariate data analysis *
* Package: TMVA *
* Class : Version *
* Web : http://tmva.sourceforge.net *
* *
* Description: *
* Current TMVA Version - filled automatically during cvs tagging *
* by python script development/tmvaTag.py *
* *
* Authors (alphabetical): *
* Andreas Hoecker <Andreas.Hocker@cern.ch> - CERN, Switzerland *
* Peter Speckmayer <Peter.Speckmayer@cern.ch> - CERN, Switzerland *
* Joerg Stelzer <Joerg.Stelzer@cern.ch> - CERN, Switzerland *
* Jan Therhaag <therhaag@physik.uni-bonn.de> - U of Bonn, Germany *
* Eckhard v. Toerne <evt@uni-bonn.de> - U of Bonn, Germany *
* Helge Voss <Helge.Voss@cern.ch> - MPI-K Heidelberg, GER *
* *
* Copyright (c) 2005-2010, *
* Regents of CERN (Switzerland), *
* University of Bonn (Germany), *
* University of Heidelberg (Germany), *
* University of Victoria (Canada) *
* *
* Redistribution and use in source and binary forms, with or without *
* modification, are permitted according to the terms listed in LICENSE *
* (http://tmva.sourceforge.net/LICENSE) *
**********************************************************************************/
#ifndef ROOT_TMVA_Version
#define ROOT_TMVA_Version
//////////////////////////////////////////////////////////////////////////
// //
// Version //
// //
// Automatically filled by cvs tagger: development/tmvaTag.py //
// //
//////////////////////////////////////////////////////////////////////////
#define TMVA_RELEASE "4.2.0"
#define TMVA_RELEASE_DATE "Sep 19, 2013"
#define TMVA_RELEASE_TIME "14:25:28"
#define TMVA_VERSION_CODE 262656
#define TMVA_VERSION(a,b,c) (((a) << 16) + ((b) << 8) + (c))
#endif
|