From: morsch Date: Tue, 7 Jan 2003 14:09:53 +0000 (+0000) Subject: moved to STEER X-Git-Url: http://git.uio.no/git/?p=u%2Fmrichter%2FAliRoot.git;a=commitdiff_plain;h=96a404a169c3e2987ba0c10a92650ba9931bf791 moved to STEER --- diff --git a/EVGEN/AliCollisionGeometry.cxx b/EVGEN/AliCollisionGeometry.cxx deleted file mode 100644 index f518d4d3499..00000000000 --- a/EVGEN/AliCollisionGeometry.cxx +++ /dev/null @@ -1,22 +0,0 @@ -/************************************************************************** - * Copyright(c) 1998-1999, ALICE Experiment at CERN, All rights reserved. * - * * - * Author: The ALICE Off-line Project. * - * Contributors are mentioned in the code where appropriate. * - * * - * Permission to use, copy, modify and distribute this software and its * - * documentation strictly for non-commercial purposes is hereby granted * - * without fee, provided that the above copyright notice appears in all * - * copies and that both the copyright notice and this permission notice * - * appear in the supporting documentation. The authors make no claims * - * about the suitability of this software for any purpose. It is * - * provided "as is" without express or implied warranty. * - **************************************************************************/ - -/* -$Log$ -*/ - - -#include "AliCollisionGeometry.h" -ClassImp(AliCollisionGeometry) diff --git a/EVGEN/AliCollisionGeometry.h b/EVGEN/AliCollisionGeometry.h deleted file mode 100644 index 612ce781086..00000000000 --- a/EVGEN/AliCollisionGeometry.h +++ /dev/null @@ -1,55 +0,0 @@ -#ifndef ALICOLLISIONGEOMETRY_H -#define ALICOLLISIONGEOMETRY_H -/* Copyright(c) 198-1999, ALICE Experiment at CERN, All rights reserved. * - * See cxx source for full Copyright notice */ - -/* $Id$ */ - -#include - -class AliCollisionGeometry -{ -public: - AliCollisionGeometry() {;} - virtual ~AliCollisionGeometry(){;} - // Getters - Float_t ImpactParameter() {return fImpactParameter;} - Int_t HardScatters() {return fNHardScatters;} - Int_t ProjectileParticipants() {return fNProjectileParticipants;} - Int_t TargetParticipants() {return fNTargetParticipants;} - Int_t Spectatorsn() {return fSpecn;} - Int_t Spectatorsp() {return fSpecp;} - Int_t NN() {return fNNColl;} - Int_t NNw() {return fNNwColl;} - Int_t NwN() {return fNwNColl;} - Int_t NwNw() {return fNwNwColl;} - // Setters - void SetImpactParameter(Float_t b) {fImpactParameter=b;} - void SetHardScatters(Int_t n) {fNHardScatters=n;} - void SetParticipants(Int_t np, Int_t nt) - {fNProjectileParticipants=np, fNTargetParticipants=nt;} - void SetCollisions(Int_t nn, Int_t nnw, Int_t nwn, Int_t nwnw) - {fNNColl=nn, fNNwColl=nnw, fNwNColl=nwn, fNwNwColl=nwnw;} - void SetSpectators(Int_t nspecn, Int_t nspecp) - {fSpecn=nspecn, fSpecp=nspecp;} - protected: - Int_t fNHardScatters; // Number of hard scatterings - Int_t fNProjectileParticipants; // Number of projectiles participants - Int_t fNTargetParticipants; // Number of target participants - Int_t fNNColl; // Number of N-N collisions - Int_t fNNwColl; // Number of N-Nwounded collisions - Int_t fNwNColl; // Number of Nwounded-N collisons - Int_t fNwNwColl; // Number of Nwounded-Nwounded collisions - Int_t fSpecn; // Number of spectators neutrons - Int_t fSpecp; // Number of spectators protons - Float_t fImpactParameter; // Impact Parameter - - ClassDef(AliCollisionGeometry,1) // Collision Geometry -}; -#endif - - - - - -