Skip to content

Commit

Permalink
Initial Commit to C# Mass Spectrometry Library
Browse files Browse the repository at this point in the history
  • Loading branch information
dbaileychess committed Jul 18, 2012
1 parent f2d09dd commit 4ef6578
Show file tree
Hide file tree
Showing 6 changed files with 206 additions and 5 deletions.
46 changes: 41 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,42 @@
# Build Folders (you can keep bin if you'd like, to store dlls and pdbs)
bin
obj
# Compiled Source #
###################
*.com
*.dll
*.exe

# mstest test results
TestResults
# Packages #
############
*.7z
*.dmg
*.gz
*.iso
*.iso
*.jar
*.rar
*.tar
*.zip

# Logs and databases #
######################
*.log
*.sql
*.sqlite
# OS generated files #
######################
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Icon?
ehthumbs.db
Thumbs.db

# Visual Studios #
##################
*.user
*.suo
*.sln.cache
*.xap
[bB]in/
[oO]bj/
54 changes: 54 additions & 0 deletions CSMSL/CSMSL.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{3C8C9F05-9C19-4251-95FA-05D7EDC8CAE6}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>CSMSL</RootNamespace>
<AssemblyName>CSMSL</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="Constants.cs" />
<Compile Include="Mass.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
20 changes: 20 additions & 0 deletions CSMSL/CSMSL.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 2012
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "CSMSL", "CSMSL.csproj", "{3C8C9F05-9C19-4251-95FA-05D7EDC8CAE6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{3C8C9F05-9C19-4251-95FA-05D7EDC8CAE6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3C8C9F05-9C19-4251-95FA-05D7EDC8CAE6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3C8C9F05-9C19-4251-95FA-05D7EDC8CAE6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3C8C9F05-9C19-4251-95FA-05D7EDC8CAE6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
22 changes: 22 additions & 0 deletions CSMSL/Constants.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
namespace CSMSL
{
/// <summary>
/// A collection of immutable constants and physical properties.
/// Sources include:
/// http://physics.nist.gov/cuu/Constants/index.html
/// </summary>
public static class Constants
{
/// <summary>
/// The mass of the subatmoic particle with a single negative elementary charge in
/// atomic units (u)
/// </summary>
public const double ELECTRON = 0.00054857990946;

/// <summary>
/// The mass of the subatomic particle with a single elementary charge in atomic
/// units (u)
/// </summary>
public const double PROTON = 1.007276466812;
}
}
33 changes: 33 additions & 0 deletions CSMSL/Mass.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
using System;

namespace CSMSL
{
public class Mass
{
#region Static Methods

/// <summary>
/// Calculates the mass of a given m/z and charge, assuming a proton is the charge donator
/// </summary>
/// <param name="mz">The given m/z</param>
/// <param name="charge">The given charge</param>
/// <returns>The mass</returns>
public static double MassFromMz(double mz, int charge)
{
return Math.Abs(charge) * mz - charge * Constants.PROTON;
}

/// <summary>
/// Calculates the m/z of a given mass and chargem assuming a proton is the charge donator
/// </summary>
/// <param name="mass">The given mass</param>
/// <param name="charge">The given charge</param>
/// <returns>The m/z</returns>
public static double MzFromMass(double mass, int charge)
{
return mass / Math.Abs(charge) + Math.Sign(charge) * Constants.PROTON;
}

#endregion Static Methods
}
}
36 changes: 36 additions & 0 deletions CSMSL/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;

// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("CSMSL")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("CSMSL")]
[assembly: AssemblyCopyright("Copyright © 2012")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("7d4d417d-8e49-4ce4-8f7c-cb3373794c78")]

// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

0 comments on commit 4ef6578

Please sign in to comment.